SA-MP Forums Archive
A little help please - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: A little help please (/showthread.php?tid=475926)



A little help please - Le3aT - 15.11.2013

I want to erase that thing and put "i" icon with simple /enter command at it's range

Pic.


Another Problem at Area 51

How can i clear this big gate



Last one :

How can i make a countdown


Re: A little help please - Reera - 15.11.2013

You can use mta to clear that gate. Just add it in your code with RemoveBuildingForPlayer.. also the countdown https://sampforum.blast.hk/showthread.php?tid=169023


Re: A little help please - ReD_DeVi - 15.11.2013

how to make a countdown:answer

pawn Код:
CMD:countdown(playerid,params[]) {
    if(PlayerInfo[playerid][Level] >= 3) {
        if(CountDown == -1) {
            CountDown = 6;
            SetTimer("countdown",1000,0);
            return CMDMessageToAdmins(playerid,"COUNTDOWN");
        } else return SendClientMessage(playerid,red,"ERROR: Countdown in progress");
    } else return SendClientMessage(playerid,red,"ERROR: You are not a high enough level to use this command");
}



Re: A little help please - Akira297 - 15.11.2013

You can remove the gate by using the SA:MP map editor. Two, for the entry read the SA:MP wiki. Three, look above my post..