Hallo ich brauch hilfe ich will gerne Munition kauf im dialog haben nun weis ich nicht genau wie es geht...
freu mich auf jede hilfreiche antwort von euch! Danke Im Vorraus
mfg.Chrisco
Hier mal PWN:
if(dialogid == Munition)
{
if (strval(inputtext) < 1 || strval(inputtext) > 300)
{
ShowPlayerDialog(playerid,Munition, DIALOG_STYLE_INPUT, "Munition", "Falsche Anganbe: Du kannst nicht unter 1 und nicht über 999 wählen\n\nWieviel Munition möchtest du für die ausgewählte Waffe erwerben?\nTippe ein:", "Kaufen", "Zurück"); return 1; }
}
new payout = guncharge[playerid] + ammocharge[playerid];
new location = PlayerInfo[playerid][pLocal];
GivePlayerMoney(playerid, -payout);
BizzInfo[location-99][bTill] += payout;
ExtortionBiz(location-99, payout);
BizzInfo[location-99][bProducts]--;
PlayerPlaySound(playerid, 1052, 0.0, 0.0, 0.0);
GivePlayerMoney(playerid, -payout);
GivePlayerWeapon(playerid, gun[playerid],strval(inputtext));
gun[playerid] = 0;
new string[64];
new infostring[64];
format(string, sizeof(string), "%s hat Waffen für %d$ bei der Firma %d gekauft", sendername, payout, location-99);
format(infostring, 256, "Waffe erfolgreich gekauft. Preis: %d$",payout);
SendClientMessage(playerid, COLOR_GRAD3, infostring);
return 1;
}}}