Jump to content
  • 0

pomoc GM peniaze


Mivčo

Dotaz

Sojte ;)

Robim si admin script a robim prikay gm, neukayuje mi všeak žiadný error ale ked na server zadam /gm ID Ciastku tak mi ukaže že Zlá Ciastka :(

tu je cod

CMD:gm(playerid,params[])
{
new id = strval(params[0]);
new money = strval(params[1]);
if(AdminLevel[playerid] < 3) return SCM(playerid,C,"{FFFFFF}Nemas AdminLevel 3");
else if(!IPC(id)) return SCM(playerid,C,"{FFFFFF}Zadal jsi špadné ID");
else if(!params[0] || !params[1]) return SCM(playerid,C,"{FFFFFF}/gm [iD] [Money]");
else if(money > 0 || money < 1000000) return SCM(playerid,-1,"Zlá suma");
new str[128];
format(str,128,"{D70000}Administrator %s dal hráči %s penazí %d",PlayerName(playerid),PlayerName(id),money);
SCMTA(C,str);
GPM(id,money);
return 1;
}

HELP ME?

Link to comment
Share on other sites

10 odpovědí na tuto otázku

Recommended Posts

  • 0

if(money > 0 || money < 1000000) return SCM(playerid,-1,"Zlá suma");

 

Pokud je castka vetsi nez 0 nebo mensi nez 1000000 tak to ukoncis. asi si obratil znamenka ne ? :d

 

Jinak si pak pletes php s pawnem pawno pracuje s retezci uplne jinak nez php, takze je nesmysl pouzit toto:

new id = strval(params[0]);
new money = strval(params[1]);

/gm 12 3000

id = 12;

money = 2;

  • Líbí se mi to! (+1) 1
Link to comment
Share on other sites

  • 0

if(money > 0 || money < 1000000) return SCM(playerid,-1,"Zlá suma");

 

Pokud je castka vetsi nez 0 nebo mensi nez 1000000 tak to ukoncis. asi si obratil znamenka ne ? :d

 

Jinak si pak pletes php s pawnem pawno pracuje s retezci uplne jinak nez php, takze je nesmysl pouzit toto:

new id = strval(params[0]);
new money = strval(params[1]);

/gm 12 3000

id = 12;

money = 2;

 

Pán boh ti pomahej synku :d

Diki ATomas ;)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...