03.07.2013, 08:57
edit gamemode and paste tis intro/payday thx. pls +rep
intro:
//============================[Intro Settings]==================================
#define IT_1 "~g~test ~y~test"
#define IT_2 ""
#define IT_3 "~r~test"
#define IT_4 "~b~~h~test"
payday:
public OnPlayerConnect(playerid)
{
SetTimer("payday", 1800000, 1); // This will happen every 30minutes. The "1" means that it will happen again after 30 minutes and so on.
return 1;
}
forward payday(playerid);
public payday(playerid)
{
RewardPlayer(playerid, 4000, 1); // This will give the user 1 score and 400money. The "RewardPlayer" is defined on the PPC_Common file, so you can use it.
return 1;
}
gamemode:
PWN, AMX
intro:
//============================[Intro Settings]==================================
#define IT_1 "~g~test ~y~test"
#define IT_2 ""
#define IT_3 "~r~test"
#define IT_4 "~b~~h~test"
payday:
public OnPlayerConnect(playerid)
{
SetTimer("payday", 1800000, 1); // This will happen every 30minutes. The "1" means that it will happen again after 30 minutes and so on.
return 1;
}
forward payday(playerid);
public payday(playerid)
{
RewardPlayer(playerid, 4000, 1); // This will give the user 1 score and 400money. The "RewardPlayer" is defined on the PPC_Common file, so you can use it.
return 1;
}
gamemode:
PWN, AMX