SA-MP Forums Archive
Commands in FILTERSCRIPT doesnt work AFTER gmx - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Commands in FILTERSCRIPT doesnt work AFTER gmx (/showthread.php?tid=435169)



Commands in FILTERSCRIPT doesnt work AFTER gmx - AlexSkyrise - 05.05.2013

Hi guys,

Why commands in Filterscripts doesnt work After the GMX?
i'm using zCmd.


Also what is the best way to create Vehicles in the Filterscript WHITHOUT any Conflict with Gamemode's vehicles?


Thanks for help


Re: Commands in FILTERSCRIPT doesnt work AFTER gmx - AlexSkyrise - 06.05.2013

Quote:

What do you mean conflicts? They don't conflict at all.

i mean vehicles and pickups, when we use x = createvehicle and y = createpickup in the filterscript, (WITH return ID),
then when we call this functions in gamemore(runtime), the IDs will be replaced.


filterscript.pwn
x = createvehicle(...); // ID = 1

gamemode.pwn
x = createvehicle(...); // ID = X?


And how about my frist question?