Eintrittspreis von Bizzen

Wichtiger Hinweis: Bitte ändert nicht manuell die Schriftfarbe auf schwarz sondern belasst es bei der Standardeinstellung. Somit tragt ihr dazu bei dass euer Text auch bei Verwendung unseren dunklen Forenstils noch lesbar ist!

Tipp: Ihr wollt längere Codeausschnitte oder Logfiles bereitstellen? Benutzt unseren eigenen PasteBin-Dienst Link
  • Nabend,
    Ich hab folgendes Problem auf meinem Server.


    Es handelt sich darum das schon manche Ideoten auf meinem Server Bizzes ( Also Läden ) besitzen.
    Und die machen den Eintrittspreis auf 99999$


    Meine Frage ist nun, wie könnte ich das auf 100$ begrenzen?


    Hier der Code um den Eintrittspreis zu ändern:


    if(strcmp(cmd, "/bizfee", true) == 0)
    {
    if(IsPlayerConnected(playerid))
    {
    new bouse = PlayerInfo[playerid][pPbiskey];
    if (bouse == 9999)
    {
    SendClientMessage(playerid, COLOR_GRAD2, " You don't own a business !");
    return 1;
    }
    tmp = strtok2(cmdtext, idx);
    if(!strlen(tmp))
    {
    SendClientMessage(playerid, COLOR_WHITE, "Benutze: /bizfee [EntranceFee]");
    }
    if(strval(tmp) < 0 || strval(tmp) > 99999)
    {
    SendClientMessage(playerid, COLOR_WHITE, "Minimum entrance is $0, Maximum entrance is $99999.");
    return 1;
    }
    if (bouse >= 100)
    {
    SBizzInfo[bouse-100][sbEntranceCost] = strval(tmp);
    OnPropUpdate(3,bouse);
    OnPropTextdrawUpdate(3, bouse);
    format(string, sizeof(string), "Entrance fee set to $%d.", SBizzInfo[bouse-100][sbEntranceCost]);
    }
    else
    {
    BizzInfo[bouse][bEntranceCost] = strval(tmp);
    OnPropUpdate(2, bouse);
    OnPropTextdrawUpdate(2, bouse);
    format(string, sizeof(string), "Entrance fee set to $%d.", BizzInfo[bouse][bEntranceCost]);
    }
    SendClientMessage(playerid, COLOR_WHITE, string);
    }
    return 1;
    }

  • if(strcmp(cmd, "/bizfee", true) == 0)
    {
    if(IsPlayerConnected(playerid))
    {
    new bouse = PlayerInfo[playerid][pPbiskey];
    if (bouse == 9999)
    {
    SendClientMessage(playerid, COLOR_GRAD2, " You don't own a business !");
    return 1;
    }
    tmp = strtok2(cmdtext, idx);
    if(!strlen(tmp))
    {
    SendClientMessage(playerid, COLOR_WHITE, "Benutze: /bizfee [EntranceFee]");
    }
    if(strval(tmp) < 0 || strval(tmp) > 100) // aus der 99999 ne 100 machen oder nicht^^ ?
    {
    SendClientMessage(playerid, COLOR_WHITE, "Minimum entrance is $0, Maximum entrance is $100.");
    return 1;
    }
    if (bouse >= 100)
    {
    SBizzInfo[bouse-100][sbEntranceCost] = strval(tmp);
    OnPropUpdate(3,bouse);
    OnPropTextdrawUpdate(3, bouse);
    format(string, sizeof(string), "Entrance fee set to $%d.", SBizzInfo[bouse-100][sbEntranceCost]);
    }
    else
    {
    BizzInfo[bouse][bEntranceCost] = strval(tmp);
    OnPropUpdate(2, bouse);
    OnPropTextdrawUpdate(2, bouse);
    format(string, sizeof(string), "Entrance fee set to $%d.", BizzInfo[bouse][bEntranceCost]);
    }
    SendClientMessage(playerid, COLOR_WHITE, string);
    }
    return 1;
    }



    Maddin is my Lord and Master :D
    Musel my one and only b0wm
    Bisafloah is the pokemon that pwns a lot of goddamn ponys.