How to create Exp And Level System
#4

Here you go hope this helps you out

Код:
new Exp[MAX_PLAYERS];

//Place this timer where you want it to go

Exp[playerid] = SetTimerEx("UpdateExp", 60000, true, "i", playerid);

forward UpdateExp(playerid);
public UpdateExp(playerid)
{
	if(IsPlayerConnected(playerid))
	{
		// The leveling up command goes here, whats inside the command not the /levelup peice
		return 1;
	}
	return 1;
}
Kind Regards
Ciandlah
Reply


Messages In This Thread
How to create Exp And Level System - by Loveno - 29.05.2014, 07:51
Re: How to create Exp And Level System - by Ciandlah - 29.05.2014, 07:52
Re: How to create Exp And Level System - by Loveno - 29.05.2014, 07:55
Re: How to create Exp And Level System - by Ciandlah - 29.05.2014, 08:00
Re: How to create Exp And Level System - by Loveno - 29.05.2014, 08:23
Re: How to create Exp And Level System - by Loveno - 30.05.2014, 07:01
Re: How to create Exp And Level System - by MacT - 30.05.2014, 07:11
Re: How to create Exp And Level System - by Loveno - 30.05.2014, 07:17

Forum Jump:


Users browsing this thread: 1 Guest(s)