Use Como Base:
http://pastebin.com/6V1TK4Zi Axo que nгo tem muito a ver mais tenta Crйditos: NighT Hunter |
PlayerInfo[playerid][pMats] = moneys*10;
public OnPlayerCommandText(playerid, cmdtext[])
{
if(!strcmp(cmdtext, "/pegarmateriais", true))
{
if(PlayerInfo[playerid][pLider] == 33 || PlayerInfo[playerid][pMembro] == 12)
{
if(IsPlayerInRangeOfPoint(playerid, 10.0, X, Y, Z)
{
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_WHITE, "Use: /mafia pegar [quantidade] *Max p/ Vez = 55*");
return 1;
}
moneys = strval(tmp);
if(moneys < 1 || moneys > 1000) { SendClientMessage(playerid, COLOR_GREY, " O Nъmeros de Pacotes а ser pegos tem que ser mais que 1 e menos que 1000!"); return 1; }
new price = moneys*100;
if(GetPlayerMoney(playerid) > price)
{
format(string, sizeof(string), "* Vocк recebeu %d Materiais por R$%d.", moneys, price);
SendClientMessage(playerid, COLOR_LIGHTBLUE, string);
GivePlayerMoney(playerid, - price);
PlayerInfo[playerid][pMats] = moneys;
}
else
{
format(string, sizeof(string), " Vocк nгo tem R$%d !", price);
SendClientMessage(playerid, COLOR_GREY, string);
}
}
}
return 1;
}
return 0;
}
PHP код:
|
iSmir, ele quer que quando pegue tal quantia de material, lб pelo valor, de uma quantidade maior de materiais salvos, entгo o unico modo й a multiplicaзгo na variбvel.
|