Quote:
Originally Posted by varthshenon
pawn Код:
new bool:gate
OnGameModeInit() { gate = CreateObject(2930,320.940551,312.213470,1000.785278,0,0,0.244628,50);//Create the gate with name "gate" return 1; }
if(IsPlayerInRangeOfPoint(playerid,1,321.2952,312.1402,999.1484))//Check if player near the gate { if(gate == false)//If the gate is opened, close it. { MoveObject(sdmtd[1],320.953125,313.753906,1000.785278,1);//Move the gate gate = true;//set the bool return 1; } else//If the gate closed, open it. { MoveObject(gate,320.940551,312.213470,1000.785278,1)//Move the gate gate = false;//set the bool return 1; } }
|
Can you add me on MSN or something, i get some wierd errors, i think im not sure where to put it, shall i put it on top of my whole script or under the place i add cars and such?