Mirage Source
frmWarp - Printable Version

+- Mirage Source (https://mirage-engine.uk/forums)
+-- Forum: Mirage Source (Nostalgia) (https://mirage-engine.uk/forums/forumdisplay.php?fid=61)
+--- Forum: Archive (2006-2011) (https://mirage-engine.uk/forums/forumdisplay.php?fid=18)
+---- Forum: General (https://mirage-engine.uk/forums/forumdisplay.php?fid=17)
+---- Thread: frmWarp (/showthread.php?tid=1515)

Pages: 1 2


Re: frmWarp - stilatore - 27-01-2008

doesnt seem to work :? i cant warp even if i'm >=13


Re: frmWarp - stilatore - 31-01-2008

help!!!plz it's very important.....


Re: frmWarp - stilatore - 31-01-2008

i mean the player level


Re: frmWarp - stilatore - 31-01-2008

this is what i need to do:
Code:
Private Sub warpcmd_Click()
Select Case selectwarp.Text
Case "AQUA TOWN"
    Call WarpTo2(1, 15, 15)
    Case "Field1"
IF THE PLAYER LEVEL IS >= X THEN I CAN WARP    
Call WarpTo2(2, 15, 15)



Re: frmWarp - stilatore - 01-02-2008

well i dont know really what i have to edit i only need a level restriction to each field on my frm warp


Re: frmWarp - Coke - 01-02-2008

May be a bit too advanced for you, but i suggest:

http://www.amazon.com/Complete-Idiots-Guide-Visual-Basic/dp/078971812X


Re: frmWarp - stilatore - 01-02-2008

...and i suggest u wont help me??


Re: frmWarp - Coke - 01-02-2008

stilatore Wrote:...and i suggest u wont help me??

What?


Re: frmWarp - stilatore - 01-02-2008

oh doesnt matter anymore....
this way it works
Code:
Case "Field1"
    If CInt(lblLevel.Caption) >= 17 Then
    Call WarpTo2(2, 15, 15)
    Else: Call AddText("asd", BrightRed)
    End If