A Rank System
#1

I was wondering how to make a Rank System.

It's for a war Server....

So i need to make one with weapon ranks, and vehicle ranks as well

It depends on player's kills so,

The more they kill, the more they unlock, any help ?

I've tried searching things, Just hasn't came up the same way i wanted to see.

Thanks Again, Tɧ϶ Tσηί™
Reply
#2

Код:
public OnPlayerDeath(playerid, killerid, reason)
{
    playerInfo[killerid][kills] += 1;
	return 1;
}
WorkOutRank(playerid) {
if(playerInfo[killerid][kills] >= 0 && playerInfo[killerid][kills] =< 25) {
playerInfo[killerid][rank] == 1;
} else if(playerInfo[killerid][kills] >= 26 && playerInfo[killerid][kills] =< 50) {
playerInfo[killerid][rank] == 2;
}
}
Reply
#3

Try Sandras rank system man
Reply
#4

Quote:
Originally Posted by jameskmonger
Код:
public OnPlayerDeath(playerid, killerid, reason)
{
    playerInfo[killerid][kills] += 1;
	return 1;
}
WorkOutRank(playerid) {
if(playerInfo[killerid][kills] >= 0 && playerInfo[killerid][kills] =< 25) {
playerInfo[killerid][rank] == 1;
} else if(playerInfo[killerid][kills] >= 26 && playerInfo[killerid][kills] =< 50) {
playerInfo[killerid][rank] == 2;
}
}
ok uhm...this was in march
Reply
#5

Oh, sorry xD

I was just using the search bar and it came up, guess I need to check the dates XD
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)