09.07.2014, 11:20
Hello, in my server, the LSPD, FBI doors are not moving at all.
http://prntscr.com/40xa3k
What can i do? im newbie on pawno
http://prntscr.com/40xa3k
Код HTML:
public OnPlayerPressButton(playerid, buttonid) { // LSPD if(buttonid == lspdcopsonly) { if(PlayerInfo[playerid][pLeader] == 1 || PlayerInfo[playerid][pLeader] == 2 || PlayerInfo[playerid][pFaction] == 1 || PlayerInfo[playerid][pFaction] == 2 || PlayerInfo[playerid][pFaction] == 5) { DoorOpen(playerid); SetTimer("DoorClose", 4000, 0); } else { SendClientMessage(playerid, COLOR_GREY, " You're not a Cop / FBI!"); } } if(buttonid == lspdeveryone) { DoorOpen(playerid); SetTimer("DoorClose", 3500, 0); }