27.07.2012, 21:26
Код:
if(strcmp(cmd, "/account", true) == 0) { if(IsPlayerConnected(playerid)) { new trolol[256]; trolol = strtok(cmdtext, idx); if(!strlen(trolol)) { SendClientMessage(playerid, COLOR_DGOLD,"KORISTI: /account [profile/password]"); return 1; } if(strcmp(trolol,"profile",true) == 0) { TextDrawShowForPlayer(playerid, StatsTacke); format(string,sizeof string,"---------------------"); TextDrawSetString(StatsTacke,string); TextDrawShowForPlayer(playerid, StatsLevel); format(string,sizeof string,"LEVEL: %d",PlayerInfo[playerid][pLevel]); TextDrawSetString(StatsLevel,string); TextDrawShowForPlayer(playerid, StatsRespekti); new nxtlevel = PlayerInfo[playerid][pLevel]+1; new expamount = nxtlevel*levelexp; format(string,sizeof string,"RESPEKTI: %d/%d",PlayerInfo[playerid][pExp], expamount); TextDrawSetString(StatsRespekti,string); TextDrawShowForPlayer(playerid, StatsDoRespekta); format(string,sizeof string,"DO RESPEKTA: %d/60", PlayerInfo[playerid][pMinutePayDay]); TextDrawSetString(StatsDoRespekta,string); TextDrawShowForPlayer(playerid, StatsNovac); format(string,sizeof string,"NOVAC: %d$", PlayerInfo[playerid][pCash]); TextDrawSetString(StatsNovac,string); TextDrawShowForPlayer(playerid, StatsBanka); format(string,sizeof string,"BANKA: %d$", PlayerInfo[playerid][pAccount]); TextDrawSetString(StatsBanka,string); TextDrawShowForPlayer(playerid, StatsOrg); format(string,sizeof string,"ORG: %d", PlayerInfo[playerid][pMember]); TextDrawSetString(StatsOrg,string); } } return 1; }