![]() |
Help for my fish systéme ! - Printable Version +- Mirage Engine (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: Source Code Development (https://mirage-engine.uk/forums/forumdisplay.php?fid=51) +----- Forum: Mirage Source 4 (Visual Basic 6) (https://mirage-engine.uk/forums/forumdisplay.php?fid=44) +------ Forum: Bugs Reports (https://mirage-engine.uk/forums/forumdisplay.php?fid=9) +------ Thread: Help for my fish systéme ! (/showthread.php?tid=3095) |
Help for my fish systéme ! - Pix€l - 29-08-2009 Hello everybody, I create a fishing system, I would like the player can not move while fishing ... Here is my code: Code: Sub PecheLvl1(Index As Long) Do ' set of code that blocks the player in this loop Loop Until GetTickCount > tmpTick + 1000 'set of code that Unblocks the player in this loop Tanks in advance , Pix€L ![]() Re: Help for my fish systéme ! - Matt - 29-08-2009 if fishing then canmove = false Re: Help for my fish systéme ! - Pix€l - 29-08-2009 In the server canmove are not declar , help pls! i place this code in the sub playermove (serveur side) : Code: If Pechenow = True Then Canmove = False Error : Variable not defined Re: Help for my fish systéme ! - Matt - 29-08-2009 Pix€l Wrote:In the server canmove are not declar , help pls! Canmove is client side, I think. Server side, is something else. I forget. |