24.08.2011, 09:12
GameMod Using: Ravens RP (Fully edited by me)
This command dont want to attach object on vehicle....just send message and nothing else....
This is part of this FS http://forum.sa-mp.com/showthread.ph...highlight=neon
FS also dont want to work on my server....
I'm running server on 0.3c R5 (Linux) with plugins streamer(last update, by Incognito) and sscanf(last update), FS junkbuster(v10), that's all...
On my home server everything works fine, on windows with same plugins and FS....
This command dont want to attach object on vehicle....just send message and nothing else....
This is part of this FS http://forum.sa-mp.com/showthread.ph...highlight=neon
FS also dont want to work on my server....
I'm running server on 0.3c R5 (Linux) with plugins streamer(last update, by Incognito) and sscanf(last update), FS junkbuster(v10), that's all...
On my home server everything works fine, on windows with same plugins and FS....
pawn Code:
if(strcmp(cmd, "/undercover", true) == 0)
{
if(IsACop(playerid) || IsAFreecop(playerid))
{
SetPVarInt(playerid, "undercover", CreateDynamicObject(18646,0,0,0,0,0,0));
SetPVarInt(playerid, "undercover1", CreateDynamicObject(18646,0,0,0,0,0,0));
AttachObjectToVehicle(GetPVarInt(playerid, "undercover"), GetPlayerVehicleID(playerid), -0.5, -0.2, 0.8, 2.0, 2.0, 3.0);
AttachObjectToVehicle(GetPVarInt(playerid, "undercover1"), GetPlayerVehicleID(playerid), -0.5, -0.2, 0.8, 2.0, 2.0, 3.0);
SendClientMessage(playerid, 0xFFFFFFAA, "You have Attched Undercover light on your vehicle!");
}
else
{
SendClientMessage(playerid, COLOR_GREY, "**You are not a Cop!");
}
return 1;
}