15.06.2013, 08:11
18691 ---> Fire
1463 ----> Logs.
Beware,the fire object will not appear in map editor,(Only ingame,because it's an effect) so you need to place it carefully! Else,you would never be able to remove it again! Unless you find the CreateObject(18691, .... );
So instead,I've got this test command on my script,for chilling purposes only
1463 ----> Logs.
Beware,the fire object will not appear in map editor,(Only ingame,because it's an effect) so you need to place it carefully! Else,you would never be able to remove it again! Unless you find the CreateObject(18691, .... );
So instead,I've got this test command on my script,for chilling purposes only
pawn Код:
CMD:fire(playerid,params[])
{
new Float:x, Float:y, Float:z; GetPlayerPos(playerid,x,y,z);
CreateObject(18691,x,y,z-2,0,0,0,0.0);
CreateObject(1463,x,y,z-1,0,0,0,0.0);
return 1;
}