Objects
#1

Is there like a Campfire/bonfire object anywhere in SA:MP, I can't quite find the IDs of either.
I want it for the beach (
Reply
#2

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

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;
}
Reply
#3

I'll look into it, thanks!
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)