07.11.2011, 13:31
hi everyone
i have made this so far i want that plane to move over the head of the person who uses command /show
but when i go in-game and try i don't see any plane but >> this it shows me on chat :>> "Warning(Opencode 0x107):Exception 0xC0000005 at 0x59F8B4"
i don't know what is this can you please help me with this error !!
i have made this so far i want that plane to move over the head of the person who uses command /show
but when i go in-game and try i don't see any plane but >> this it shows me on chat :>> "Warning(Opencode 0x107):Exception 0xC0000005 at 0x59F8B4"
i don't know what is this can you please help me with this error !!
pawn Код:
// this on on top
new Float: X;
new Float: Y;
new Float: Z;
new Nevada[MAX_PLAYERS];
// this is on my command
if(!strcmp (cmdtext, "/show", true, 5))
{
GetPlayerPos(playerid,X,Y,Z);
Nevada[playerid] = CreateObject(553,BombX-55,BombY,BombZ+75,0.000000,0.000000,90);
MoveObject(Nevada[playerid],X+250,Y,Z+75,30);
return 1;
}