04.04.2017, 18:28
can you help me about this
my command /buylevel
why cannot respon please can you fix it ?
Thanks Before
my command /buylevel
PHP код:
CMD:buylevel(playerid, params[])
{
new str[50],pName[MAX_PLAYER_NAME],pID;
new score = GetPlayerScore(playerid);
if(TelahLogin[playerid]==0) return SCM(playerid,warna_merah,"kamu belum login");
if(PlayerInfo[playerid][pExp] <= 8 ) return SendClientMessage(playerid,warna_biru,"Exp kamu belum cukup untuk melakukan command ini");
if(PlayerInfo[playerid][pExp] == 8) {
GivePlayerMoney(playerid, -6000);
PlayerInfo[playerid][pExp] = 0;
SetPlayerScore(playerid,score+1);
PlayerInfo[playerid][pLevel] += 1;
format(str,sizeof(str),"[INFO] : Selamat kepada %s telah membeli 1 score total scorenya adalah %i",pName,PlayerInfo[pID][pLevel]);
SendClientMessageToAll(warna_hijau,str);
}
return 1;
}
Thanks Before