Beiträge von MysteriX

    Kann jemand helfen???


    Also das is der Befehl in Pawno:


    ocmd:startbonus(playerid,params[])
    {
    new Geld = 50000;
    if(IsPlayerInRangeOfPoint(playerid, 10.0,1717.2563,-1910.0349,13.5660))return SendClientMessage(playerid,COLOR_RED,"Du bist nicht am /startbonus Punkt "); // Das nur machen wenn du willst das es nur an einer bestimmten Position ist....
    if(PlayerInfo[playerid][pLevel] <= 2)
    {
    GivePlayerMoney(playerid,Geld);
    PlayerInfo[playerid][pLevel] == 3;
    format(string,sizeof(string),"Du hast Level 3 und 50000$");
    SendClientMessage(playerid,COLOR_YELLOW,string);


    }
    else
    {
    SendClientMessage(playerid,COLOR_RED,"Du bist nicht Level 1");
    }



    return 1;
    }




    Und dann bekomme ich Errors:


    C:\Users\JOACHIM\Desktop\Spiele\Samp Scripts\World of San Andreas 4.0\gamemodes\WorldofSanAndreas.pwn(18349) : warning 219: local variable "Spieler" shadows a variable at a preceding level
    C:\Users\JOACHIM\Desktop\Spiele\Samp Scripts\World of San Andreas 4.0\gamemodes\WorldofSanAndreas.pwn(53309) : warning 215: expression has no effect
    C:\Users\JOACHIM\Desktop\Spiele\Samp Scripts\World of San Andreas 4.0\gamemodes\WorldofSanAndreas.pwn(53310) : error 017: undefined symbol "string"
    C:\Users\JOACHIM\Desktop\Spiele\Samp Scripts\World of San Andreas 4.0\gamemodes\WorldofSanAndreas.pwn(53310) : error 017: undefined symbol "string"
    C:\Users\JOACHIM\Desktop\Spiele\Samp Scripts\World of San Andreas 4.0\gamemodes\WorldofSanAndreas.pwn(53310) : error 029: invalid expression, assumed zero
    C:\Users\JOACHIM\Desktop\Spiele\Samp Scripts\World of San Andreas 4.0\gamemodes\WorldofSanAndreas.pwn(53310) : fatal error 107: too many error messages on one line


    Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase



    4 Errors.



    Hoffe auf schnelle Hilfe :)

    stock LoadHouse(i)
    {
    new str[128];
    format(str, sizeof str, "/Houses/%d.ini", i);
    if(fexist(str))
    {
    if(INI_Open(str))
    {
    HouseInfo[i][hOwned] = INI_ReadInt("Owned");
    INI_ReadString(HouseInfo[i][hOwner], "Owner", MAX_PLAYER_NAME);
    HouseInfo[i][hEntrx] = INI_ReadFloat("Entrx");
    HouseInfo[i][hEntry] = INI_ReadFloat("Entry");
    HouseInfo[i][hEntrz] = INI_ReadFloat("Entrz");
    HouseInfo[i][hPrice] = INI_ReadInt("Price");
    HouseInfo[i][hIntid] = INI_ReadInt("Intid");
    HouseInfo[i][hLocked] = INI_ReadInt("Locked");
    HouseInfo[i][hRentable] = INI_ReadInt("Rentable");
    HouseInfo[i][hRent] = INI_ReadInt("Rent");
    HouseInfo[i][hIntx] = Interiors[HouseInfo[i][hIntid]][intpx];
    HouseInfo[i][hInty] = Interiors[HouseInfo[i][hIntid]][intpy];
    HouseInfo[i][hIntz] = Interiors[HouseInfo[i][hIntid]][intpz];
    HouseInfo[i][hInt] = Interiors[HouseInfo[i][hIntid]][interiorid];
    format(HouseInfo[i][hDescr], 50, Interiors[HouseInfo[i][hIntid]][description]);
    INI_Close();
    if(!HouseInfo[i][hOwned]) format(str, sizeof str, "%s\nZum Verkauf\nPreis: %d€", HouseInfo[i][hDescr], HouseInfo[i][hPrice]);
    else if(HouseInfo[i][hOwned] && !HouseInfo[i][hRentable]) format(str, sizeof str, "%s\nBesitzer: %s",HouseInfo[i][hDescr], HouseInfo[i][hOwner]);
    else if(HouseInfo[i][hOwned] && HouseInfo[i][hRentable]) format(str, sizeof str, "%s\nBesitzer: %s\nMiete: %d€\n/mieten zum Mieten",HouseInfo[i][hDescr], HouseInfo[i][hOwner], HouseInfo[i][hRent]);
    HouseInfo[i][hLabel] = CreateDynamic3DTextLabel(str, COLOR_HOUSELABEL, HouseInfo[i][hEntrx], HouseInfo[i][hEntry], HouseInfo[i][hEntrz], 50);
    if(!HouseInfo[i][hOwned]) HouseInfo[i][hPick] = CreateDynamicPickup(1273, 1,HouseInfo[i][hEntrx], HouseInfo[i][hEntry], HouseInfo[i][hEntrz]);
    else HouseInfo[i][hPick] = CreateDynamicPickup(1272, 1, HouseInfo[i][hEntrx], HouseInfo[i][hEntry], HouseInfo[i][hEntrz]);
    }
    }
    return 1;
    }
    //==================================//
    // Script by K3VIN aka Rapture !! //
    //==================================//
    //==========================================================================================================================


    Das ist jetzt zum beispiel ganz unten die stelle wo genau soll ich denn jetzt da es einfügen?