Cool down
#1

Hi guys , i need some help i have this code and i want to add a cooldown , player can use it only every minute
Код:
CMD:dive(playerid, params[])
{
    new highness;
	if(sscanf(params,"i",highness))return SendClientMessage(playerid,COLOR_GREEN,"/dive [high 100-800]");
	if (highness < 100 || highness > 800) return SendClientMessage(playerid,COLOR_GREEN,"/dive [high 100-800]");//COLOR_BROWN
	SendClientMessage(playerid,COLOR_RED,"You dive. Enjoy.");
	new Float:x,Float:y,Float:z;
	GetPlayerPos(playerid,x,y,z);
	SetPlayerPos(playerid,x,y,z+highness);
	GivePlayerWeapon(playerid, 46, 1);
	SendAdminCMD(playerid, "dive");
	return 1;
}
Reply


Messages In This Thread
Cool down - by Xdrime - 22.05.2016, 12:48
Re: Cool down - by J0sh... - 22.05.2016, 12:50
Re: Cool down - by oMa37 - 22.05.2016, 12:50
Re: Cool down - by MBilal - 22.05.2016, 12:53
Re: Cool down - by Xdrime - 22.05.2016, 13:01
Re: Cool down - by Xdrime - 22.05.2016, 13:04
Re: Cool down - by J0sh... - 22.05.2016, 13:55
Re: Cool down - by Konstantinos - 22.05.2016, 14:03
Re: Cool down - by J0sh... - 22.05.2016, 14:11

Forum Jump:


Users browsing this thread: 1 Guest(s)