05.11.2012, 19:09
Hi, I was trying to do something but I got troubled. So I'm making a moving gate (with command) and I want to be opened only by RCON admins and also to use PlaySoundForPlayersInRange (with sound 1035 while the gate is being opened and when it opens to finish with sound 1036). Here is my code:
pawn Код:
if (strcmp("/adminelevator", cmdtext, true, 10) == 0)
{
if(CheckEGate == 0)
{
SendClientMessage(playerid,-1,"Gate is opened now!");
MoveObject(EGate, 1788.30004883,-1297.50000000,9.60000038, 2.0);
CheckEGate = 1;
}
else
{
SendClientMessage(playerid,-1,"Gate is closed now!");
MoveObject(EGate, 1788.29980469,-1297.50000000,14.30000019, 2.0);
CheckEGate = 0;
}
return 1;
}