20.05.2016, 17:15
Hello i have a system that make you can buy weapons only for some time.
I want to make if the user death or when is changing map, to kill this timer.
I want to make if the user death or when is changing map, to kill this timer.
Code:
public OnPlayerSpawn(playerid) { SetTimerEx("TiempoCompra", 20000, false, "i", playerid); //Time to buy weapons. SendClientMessage(playerid,Verde,"[Informaciуn] {FFFFFF}Tienes un periodo de tiempo para equiparte, usa la tecla (H) para desplegar el menъ."); } forward TiempoCompra(playerid); public TiempoCompra(playerid) { TextDrawHideForPlayer(playerid, Carrito[0]); //Textdraws TextDrawHideForPlayer(playerid, Carrito[1]); // "" TextDrawHideForPlayer(playerid, Carrito[2]); // "" TextDrawHideForPlayer(playerid, Carrito[3]); // "" TextDrawHideForPlayer(playerid, Carrito[4]); // "" PuedeComprar[playerid] = 0; //Make the player cannot buy anything. SendClientMessage(playerid,Rojo,"[Informaciуn] {FFFFFF}El periodo de tiempo para equiparte ha expirado."); return 1; }