RW: Please help me!!!
#1

Hi,
Can someone here help me to do a function like this:

Код:
GetPlayerDeaths(playerid);
Код:
GetPlayerKills(playerid);
Код:
GetAdminLevel(playerid);
If someone can help me, thanks.
Reply
#2

try make those as a commands.
Reply
#3

Do you use a file saving system?
Reply
#4

No No.....

I want it for a Texdraw...
Reply
#5

pawn Код:
static GetPlayerKills(playerid) {
    return kills[playerid];
}
seriously though, you will need to give more info about the way you save that data.
Reply
#6

Nope.....

I'm using the savedata as Filterscript....

I just want the code...
GetPlayerKills, GetPlayerDeaths....
....

They are in the folder scriptfiles...
Reply
#7

what do you exactly need?
we cannot understand ..
To save the player's kill/deaths and get them via that function or...
CMON..
Reply
#8

To do that you need register/login system.



We cannot understand what you mean.

You need textdraw editor.
Register System.
and some little knowledge in scripting.
Reply
#9

Quote:
Originally Posted by Magic_Time
Посмотреть сообщение
Nope.....

I'm using the savedata as Filterscript....

I just want the code...
GetPlayerKills, GetPlayerDeaths....
....

They are in the folder scriptfiles...
I am still not entirely sure what you mean. In what way are you fetching his kills, deaths et cetera?
Reply
#10

Assuming you don't have a register system, you'll need a temporary storage, so make a new enum and a variable before ongamemodeinit:

pawn Код:
enum PlayerInfo
{
Kills,
Deaths
};

new TempInfo[MAX_PLAYERS][PlayerInfo];
OnPlayerConnect:

pawn Код:
TempInfo[playerid][Deaths] = 0;
TempInfo[killerid][Kills] = 0;
OnPlayerDeath:

pawn Код:
TempInfo[playerid][Deaths] ++;
TempInfo[killerid][Kills] ++;
OnPlayerDisconnect:

pawn Код:
TempInfo[playerid][Deaths] = 0;
TempInfo[killerid][Kills] = 0;
That'll store all kill/death data until you disconnect.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)