NPC Problem

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
  • Hey habe mir in gl_npcs neue NPCs Erstellt.:


    new Random;


    public OnFilterScriptInit()
    {
    // NPCS
    ConnectNPC("Dancer1","dancer1");
    ///usw


    Random = AddStaticVehicle(420,2044.8854,1473.2106,10.4494,181.3339,6,1); // Makes sure the NPC Spawns



    public OnPlayerConnect(playerid)
    {
    if(IsPlayerNPC(playerid)) {
    new ip_addr_npc[64+1];
    new ip_addr_server[64+1];
    GetServerVarAsString("bind",ip_addr_server,64);
    GetPlayerIp(playerid,ip_addr_npc,64);

    if(!strlen(ip_addr_server)) {
    ip_addr_server = "127.0.0.1";
    }

    if(strcmp(ip_addr_npc,ip_addr_server,true) != 0) {
    // this bot is remote connecting
    printf("NPC: Got a remote NPC connecting from %s and I'm kicking it.",ip_addr_npc);
    Kick(playerid);
    return 0;
    }
    printf("NPC: Connection from %s is allowed.",ip_addr_npc);
    }

    return 1;
    }



    public OnPlayerRequestClass(playerid, classid)
    {
    if(!IsPlayerNPC(playerid)) return 0; // We only deal with NPC players in this script

    new playername[64];
    GetPlayerName(playerid,playername,64);



    return 0;
    }


    public OnPlayerSpawn(playerid)
    {
    if(!IsPlayerNPC(playerid)) return 1; // We only deal with NPC players in this script


    new playername[64];
    GetPlayerName(playerid,playername,64);


    if(!strcmp(playername,"Dancer1",true)) {
    PutPlayerInVehicle(playerid, Random, 0);
    SetSpawnInfo( playerid, 0, 12, 1958.33, 1343.12, 15.36, 269.15, 31, 1000, 0, 0, 0, 0 );
    SetPlayerSkin(playerid, 12);
    }
    //usw




    Leider Ändert der Skin nicht >-< Weis einer warum?
    MfG



    Edit: Keiner Der Lösung bewusst?^^ Nrgh^^^^ stimmt doch eig oder?^^

    2 Mal editiert, zuletzt von GDC | Philip ()

  • Bringt nichts....
    Edit: Kommt schon, das wird doch wohl wer packen :D

    Einmal editiert, zuletzt von GDC | Philip ()

  • namen stimmen und ! wegmachen bringt nichts (ich bin doch nicht behämmert erstens habs ich ausporbiert zweitens hast du mir genau das gesagt was ich als erstes gemacht hab und drittens wars so in der standart version^^)


    Naja danke für die hilfe^^^^
    Edit: Ich weis das ich nervig bin^^
    Aber hat niemand anderer Dieses Problem?!?
    MfG

    Einmal editiert, zuletzt von GDC | Philip ()