SA-MP Forums Archive
Removing fire from your game. - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Removing fire from your game. (/showthread.php?tid=217468)



Removing fire from your game. - kin - 28.01.2011

I first saw this in XMovie, there is a command named /nofire, and it removes the firs created by anything that makes a fire. I am wondering how i could add this to my script, as there isnt a command or anything. I am stumped -.- if you know please help me.


Re: Removing fire from your game. - admantis - 28.01.2011

I am not sure if this works but
pawn Код:
stock RemoveFire(playerid) {
 new vw[MAX_PLAYERS] = GetPlayerVirtualWorld(playerid);
 SetPlayerVirtualWorld(playerid,1000+random(24));
 SetPlayerVirtualWorld(playerid, vw[playerid]);
 SendClientMessage(playerid,0xCC00FFFF,"Fire removed lol"); }
idk if it will work


Re: Removing fire from your game. - kin - 28.01.2011

Yea it doesnt lol


Re: Removing fire from your game. - kin - 28.01.2011

fixed it