Moving gates problem 3 !
#4

Ok Ok xD
Now I try to write better English ^^
_________________________________________________
For problem number 1:

Where do you have declared the rank system? (Gamemode?, Filterscript?)

Case: Gamemode:
2 options:

1. Put the gate commands + the object-create functions into the gamemode
2. Try to create a function in the gamemode and use CallRemoteFunction in the filterscript

_________________________________________________

For problem number 2:

Objects in filterscripts aren't deleted after unload or reload =D
But if you reload the filterscript, the same objects are created again xD

So you must destroy the objects after reload with:

pawn Код:
OnFilterScriptExit()
{
   DestroyObject(lspgate);
   return 1;
}
_________________________________________________
Better? xD
Reply


Messages In This Thread
Moving gates problem 3 ! - by Kirchhoff - 06.04.2010, 08:23
Re: Moving gates problem 3 ! - by Last_Stand_Guardian - 06.04.2010, 09:08
Re: Moving gates problem 3 ! - by Kirchhoff - 06.04.2010, 09:10
Re: Moving gates problem 3 ! - by Last_Stand_Guardian - 06.04.2010, 09:23
Re: Moving gates problem 3 ! - by Kirchhoff - 06.04.2010, 09:41
Re: Moving gates problem 3 ! - by Kirchhoff - 06.04.2010, 09:43
Re: Moving gates problem 3 ! - by Joe_ - 06.04.2010, 10:00
Re: Moving gates problem 3 ! - by Kirchhoff - 06.04.2010, 10:17
Re: Moving gates problem 3 ! - by Joe_ - 06.04.2010, 10:39
Re: Moving gates problem 3 ! - by Kirchhoff - 07.04.2010, 14:48

Forum Jump:


Users browsing this thread: 1 Guest(s)