Advertisement
DovFLaminggo

Stats

Jul 27th, 2014
377
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. CMD:stats(playerid,params[])
  2. {
  3. new string[128], pDeaths, player1, h, m, s;
  4. if(isnull(params)) player1 = playerid;
  5. else player1 = strval(params);
  6. TotalGameTime(player1, h, m, s);
  7. if(PlayerInfo[player1][Deaths] == 0) pDeaths = 1; else pDeaths = PlayerInfo[player1][Deaths];
  8. new string[800];
  9. format(string,sizeof(string),"Level : %s\n\nKills : %d\n\nDeaths : %d\n\nRatio : %0.2f\n\n{00FF00}Money: $%d\n\n{00FF00}Time: %d jam %d menit %d \n\n",GetRankFromLevel(playerid),PlayerInfo[playerid][Kills],PlayerInfo[playerid][Deaths],Float:PlayerInfo[playerid][Kills],Float:Float:pDeaths,GetPlayerMoney(playerid),h,m,s);
  10. ShowPlayerDialog(playerid,9800,DIALOG_STYLE_MSGBOX,"{00FF00}Player stats",string,"Ok","");
  11. return 1;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement