06.04.2010, 09:23
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:
_________________________________________________
Better? 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