Problem beim Bizzname

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
  • Ich habe Ein Problem unzwar jeder Bizowner kann sein Biz umbennen oder eine Beschreibung reinmachen, doch wenn ein User ein Bizz der id 0 besitzt und es umbenennt werden alle Bizzes umbenannt. Das trifft nur bei der id 0 zu.
    hier mein Code ..





    if(strcmp(cmd, "/neuername", true) == 0)
    {
    if(IsPlayerConnected(playerid))
    {


    new length = strlen(cmdtext);
    while ((idx < length) && (cmdtext[idx] <= ' '))
    {
    idx++;
    }
    new offset = idx;
    new result[200];
    while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
    {
    result[idx - offset] = cmdtext[idx];
    idx++;
    }
    result[idx - offset] = EOS;
    if(!strlen(result))
    {
    SendClientMessage(playerid, COLOR_WHITE, "Verwendung: /bizname [name]");
    return 1;
    }


    new bouse = PlayerInfo[playerid][pPbiskey];
    if (bouse == 255)
    {
    SendClientMessage(playerid, COLOR_GRAD2, " Du besitzt keine Firma !");
    return 1;
    }
    tmp = strtok(cmdtext, idx);
    if(!strlen(tmp))
    {
    SendClientMessage(playerid, COLOR_WHITE, "Verwendung: /neuername [name]");
    }


    if (bouse >= 100)
    {


    strmid(SBizzInfo[bouse-100][sbMessage], result, 0, 64, 22);
    format(string, sizeof(string), "Name der Firma wurde auf '%s' geändert",SBizzInfo[bouse-100][sbMessage]);


    }
    else
    {
    strmid(BizzInfo[bouse][bMessage], result, 0, 64, 255);
    format(string, sizeof(string), "Name der Firma wurde auf '%s' geändert",BizzInfo[bouse][bMessage]);


    }


    OnPropUpdate();
    SendClientMessage(playerid, COLOR_WHITE, string);


    for(new h = 0; h < sizeof(SBizzInfo); h++)
    {
    if(SBizzInfo[h][sbOwned] == 1)
    {
    new string251[256];
    new LocationZone[MAX_ZONE_NAME];
    Get2DZone(SBizzInfo[h][sbEntranceX], SBizzInfo[h][sbEntranceY],LocationZone,MAX_ZONE_NAME);
    Delete3DTextLabel(sbizzsale[h]);
    format(string251, sizeof(string251), ""CRVENA"[FIRMA]\n"BIJELA"Besitzer: "CRVENA"%s\n"BIJELA"CoBesitzer: "CRVENA"%s |"BIJELA"| Adresse: "CRVENA"%s\n "BIJELA"Preis: "CRVENA"%d$\n "BIJELA"Beschreibung der Firma:\n"CRVENA"%s",SBizzInfo[h][sbOwner],SBizzInfo[h][sbExtortion],LocationZone,SBizzInfo[h][sbEntranceCost],SBizzInfo[bouse-100][sbMessage]);
    sbizzsale[h] = Create3DTextLabel(string251,0x0080FFFF,SBizzInfo[h][sbEntranceX], SBizzInfo[h][sbEntranceY], SBizzInfo[h][sbEntranceZ]+1,20,0,1);
    Update3DTextLabelText(sbizzsale[h],0x0080FFFF,string251);
    }



    }



    for(new h = 0; h < sizeof(BizzInfo); h++)
    {
    if(BizzInfo[h][bOwned] == 1)
    {
    new string251[256];
    new LocationZone[MAX_ZONE_NAME];
    Get2DZone(BizzInfo[h][bEntranceX], BizzInfo[h][bEntranceY],LocationZone,MAX_ZONE_NAME);
    Delete3DTextLabel(bizzsale[h]);
    format(string251, sizeof(string251), ""CRVENA"[FIRMA]\n"BIJELA"Besitzer: "CRVENA"%s\n"BIJELA"CoBesitzer: "CRVENA"%s |"BIJELA"| Adresse: "CRVENA"%s\n "BIJELA"Eintrittsreis: "CRVENA"%d$\n "BIJELA"Beschreibung der Firma:\n"CRVENA"%s",BizzInfo[h][bOwner],BizzInfo[h][bExtortion],LocationZone,BizzInfo[h][bEntranceCost],BizzInfo[bouse-100][bMessage]);
    bizzsale[h] = Create3DTextLabel(string251,0x0080FFFF,BizzInfo[h][bEntranceX], BizzInfo[h][bEntranceY], BizzInfo[h][bEntranceZ]+1,20,0,1);
    Update3DTextLabelText(bizzsale[h],0x0080FFFF,string251);
    }



    }




    }
    return 1;
    //}
    }