Im Homes FS icons hinzufügen

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
  • Hallo,
    ich habe von hier http://forum.sa-mp.com/index.php?topic=123741.0 das ELite House system
    nun will ich icons pro haus einbauen


    nur was muss ich da jetzt machen das es geht?
    hier der code;


    stock LoadPlayerHouse(houseid)
    {
    new house[64]; format(house, sizeof(house), "/Houses/%d.dini.save", houseid);
    if(dini_Exists(house)){
    format(HouseInfo[houseid][hName], MAX_PLAYER_NAME, "%s", dini_Get(house, "Name"));
    HouseInfo[houseid][hSellable] = dini_Int(house, "For_Sell");
    HouseInfo[houseid][hSell] = dini_Int(house, "Sell_Price");
    HouseInfo[houseid][hRent] = dini_Int(house, "Rent_Price");
    HouseInfo[houseid][hLevel] = dini_Int(house, "House_Level");
    HouseInfo[houseid][hExitX] = dini_Float(house, "Exit_Coord:X");
    HouseInfo[houseid][hExitY] = dini_Float(house, "Exit_Coord:Y");
    HouseInfo[houseid][hExitZ] = dini_Float(house, "Exit_Coord:Z");
    HouseInfo[houseid][hVirtualWorld] = dini_Int(house, "VirtualWorld");
    HouseInfo[houseid][hLocked] = dini_Int(house, "Status");

    if(HouseInfo[houseid][hSellable] == 1){
    HouseInfo[houseid][hPickup] = CreatePickup(1273, 23, HouseInfo[houseid][hExitX], HouseInfo[houseid][hExitY], HouseInfo[houseid][hExitZ]); // not bought


    } else {
    HouseInfo[houseid][hPickup] = CreatePickup(1272,23, HouseInfo[houseid][hExitX], HouseInfo[houseid][hExitY], HouseInfo[houseid][hExitZ]); // bought


    }
    }
    return true;
    }



    und in die zeile 18 und 21 sollten eigt. meine SetPlayerMapIcon sachen nur sagt der mir ich habe playerid nicht definiert


    oder müssen die wo anders rein?


    //edit .. die markerid id 31 für kaufbare häuser und 32 für gekaufte häuser