30.04.2012, 15:38
OK !!
I want .. am
I do /givemoney 0 1000000
But if I do /remove 0
The money player get remove !
I want if the admin give him 10$
so 10$ remove
if 1000000000000000000000
so 1000000000000000000000 remove...
help ?
this my command now
I want .. am
I do /givemoney 0 1000000
But if I do /remove 0
The money player get remove !
I want if the admin give him 10$
so 10$ remove
if 1000000000000000000000
so 1000000000000000000000 remove...
help ?
this my command now
PHP код:
if(strcmp(tmp, "Remove", true) == 0 || strcmp(tmp, "R", true) == 0)
{
if(GetAdminLevel(playerid) < 1 && !IsPlayerAdmin(playerid) && GetAdminSpay(playerid) < 1 && GetTempAdminLevel(playerid) < 1) return SendClientMessage(playerid, White, "רמת הניהול שלך נמוכה");
if(activity == 0) return SendClientMessage(playerid,White,"אין פעילות מופעלת");
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) return SendClientMessage(playerid, yellow, "/Activity Remove [ID] :צורת השימוש");
id = strval(tmp);
SetPlayerMoney(id, RemoveAny);
format(string,sizeof(string),"ממנצח בפעילות ולכן הכסף שלו הוסר %s הסרת את השחקן",GetName(id));
SendClientMessage(playerid,0x48c14ff, string);
format(string,sizeof(string),"הסיר אותך ממנצח בפעילות ולכן כספך הוסר %s האדמין",GetName(playerid));
SendClientMessage(id,0x48c14ff, string);
return 1;
}
if(strcmp(tmp, "GiveMoney", true) == 0 || strcmp(tmp, "Gm", true) == 0)
{
if(GetAdminLevel(playerid) < 1 && !IsPlayerAdmin(playerid) && GetAdminSpay(playerid) < 1 && GetTempAdminLevel(playerid) < 1) return SendClientMessage(playerid, White, "רמת הניהול שלך נמוכה");
if(activity == 0) return SendClientMessage(playerid, White, "כדי לתת לשחקן פרס צריכה להיות פעילות מופעלת");
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) return SendClientMessage(playerid, yellow, "/Activity GiveMoney(Gm) [id] [Money] :צורת השימוש");
id = strval(tmp);
tmp1 = strtok(cmdtext, idx);
if(!strlen(tmp1)) return SendClientMessage(playerid, yellow, "/Activity GiveMoney [Money] :צורת השימוש");
any = strval(tmp1);
if(any < 1 || any > 150000) return SendClientMessage(playerid, White, "סכום הפרס חייב להיות בין 150000 - 1");
any = strval(tmp1);
GivePlayerMoney(id, any);
format(string, sizeof(string),"%d ניצח בפעילות וקיבל את הסכום %s השחקן", any, GetName(id));
SendClientMessageToAll(0x48c14ff, string);
return 1;
}