13.03.2015, 13:50
Heey guys,
I tried a lot but I don't know how to make a textdraw with KILLS & DEATHS that load the kills & deaths from users file.
I have a command: /stats and there you can see how many times you are killed and the deaths. I want a textdraw on the right side so you have it without a command. HOW?
Command script:
You can see this from the command:
Textdraw:
So I wanna put this in my textdraw to show kills and deaths,
HOW?
I tried a lot but I don't know how to make a textdraw with KILLS & DEATHS that load the kills & deaths from users file.
I have a command: /stats and there you can see how many times you are killed and the deaths. I want a textdraw on the right side so you have it without a command. HOW?
Command script:
PHP код:
CMD:stats(playerid,params[]) {
new string[100], pDeaths, player1, h, m, s,playername[MAX_PLAYER_NAME];
if(isnull(params)) player1 = playerid;
else player1 = strval(params);
if(IsPlayerConnected(player1)) {
TotalGameTime(player1, h, m, s);
GetPlayerName(player1, playername, sizeof(playername));
if(PlayerInfo[player1][Deaths] == 0) pDeaths = 1; else pDeaths = PlayerInfo[player1][Deaths];
new str[120], str1[100], str2[100];
format(str, sizeof(str),"| ------ | %s's Status | ------- |", PlayerName2(player1));
format(string,sizeof(string),"Scores: %d | Money: $%d | Kills: %d | Deaths: %d | K/D Ratio: %0.2f", GetPlayerScore(player1), GetPlayerMoney(player1), PlayerInfo[player1][Kills], PlayerInfo[player1][Deaths], Float:PlayerInfo[player1][Kills]/Float:pDeaths);
format(str1, sizeof(str1),"Admin Level: %d | Moderator: %s | Rank: %s | Team: %s | Class: %s", PlayerInfo[player1][Level], PlayerInfo[player1][Helper] ? ("Yes") : ("No"), GetRankName(player1), GetTeamName(player1), GetClass(player1));
format(str2, sizeof(str2),"TimePlayed: [%d] hrs [%d] mins [%d] secs", h, m, s);
SendClientMessage(playerid, 0xFFFFFFFF,str);
SendClientMessage(playerid, 0xAAAAAAFF,string);
SendClientMessage(playerid, 0xAAAAAAFF,str1);
SendClientMessage(playerid, 0xAAAAAAFF,str2);
SendClientMessage(playerid, 0xFFFFFFFF,"| ---------------------------------------------------- |");
} else return SendClientMessage(playerid, red, "Player Not Connected!");
return 1;
}
PHP код:
"Scores: %d | Money: $%d | Kills: %d | Deaths: %d | K/D Ratio: %0.2f", GetPlayerScore(player1), GetPlayerMoney(player1), PlayerInfo[player1][Kills], PlayerInfo[player1][Deaths], Float:PlayerInfo[player1][Kills]/Float:pDeaths);
PHP код:
Web = TextDrawCreate(485.000000, 10.000000, "Scores: %d | Money: $%d | Kills: %d | Deaths: %d | K/D Ratio: %0.2f");
TextDrawBackgroundColor(Web, 255);
TextDrawFont(Web, 1);
TextDrawLetterSize(Web, 0.330000, 1.200000);
TextDrawColor(Web, -1);
TextDrawSetOutline(Web, 1);
TextDrawSetProportional(Web, 1);
TextDrawSetShadow(Web,1);
HOW?