11.04.2011, 18:52
Hi tryin to fix this Newbie chat
i use this command to make a player a Helper
What i want is for it to save the rank after relog
when i make a player a helper and he relogs he's rank becomes newbie again.
would be thankfull
i use this command to make a player a Helper
pawn Код:
if(strcmp(cmd, "/makehelper", true) == 0)
{
if(IsPlayerConnected(playerid))
{
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /makehelper [playerid/PartOfName] [level(1-2)]");
return 1;
}
new para1;
new level;
para1 = ReturnUser(tmp);
tmp = strtok(cmdtext, idx);
level = strval(tmp);
if(IsPlayerConnected(para1))
{
if(PlayerInfo[playerid][pHelper] >= 2 || PlayerInfo[playerid][pAdmin] >= 4242)
{
if(para1 != INVALID_PLAYER_ID)
{
GetPlayerName(para1, giveplayer, sizeof(giveplayer));
GetPlayerName(playerid, sendername, sizeof(sendername));
PlayerInfo[para1][pHelper] = level;
printf("AdmCmd: %s has made %s a level %d helper", sendername, giveplayer, level);
format(string, sizeof(string), " You have been promoted to a level %d helper by %s", level, sendername);
SendClientMessage(para1, COLOR_LIGHTBLUE, string);
format(string, sizeof(string), " You have promoted %s to a level %d helper.", giveplayer,level);
SendClientMessage(playerid, COLOR_LIGHTBLUE, string);
}
}
}
else
{
SendClientMessage(playerid, COLOR_GRAD1, "You are authorized to use this command.");
}
}
return 1;
}
when i make a player a helper and he relogs he's rank becomes newbie again.
would be thankfull