Beiträge von Maximilian

    Hab das gefunden hatte ein OnPlayerUpdate zu viel^^


    aber jetzt kommen die warning
    C:\Users\Maxi\Desktop\Roleplay of San Andreas\gamemodes\GeZReallifeloh.pwn(30182) : warning 204: symbol is assigned a value that is never used: "vehicle"
    C:\Users\Maxi\Desktop\Roleplay of San Andreas\gamemodes\GeZReallifeloh.pwn(45040) : warning 203: symbol is never used: "M_Connect"
    C:\Users\Maxi\Desktop\Roleplay of San Andreas\gamemodes\GeZReallifeloh.pwn(45040) : warning 203: symbol is never used: "M_OnPlayerUpdate"
    Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase



    3 Warnings.


    Jedoch ist in der Zeile sowie in dem Befehl kein Vehicle zu finden oO

    LOL Klammerfehler?
    C:\Users\Maxi\Desktop\Roleplay of San Andreas\pawno\include\M-Zones.inc(112) : error 004: function "M_OnPlayerEnterZone" is not implemented
    C:\Users\Maxi\Desktop\Roleplay of San Andreas\pawno\include\M-Zones.inc(121) : error 004: function "M_OnPlayerLeaveZone" is not implemented
    C:\Users\Maxi\Desktop\Roleplay of San Andreas\pawno\include\M_bot.inc(163) : error 017: undefined symbol "IsAnAdmin"
    C:\Users\Maxi\Desktop\Roleplay of San Andreas\gamemodes\GeZReallifeloh.pwn(3164) : error 017: undefined symbol "IsPlayerInFrac"
    C:\Users\Maxi\Desktop\Roleplay of San Andreas\gamemodes\GeZReallifeloh.pwn(3174) : error 017: undefined symbol "IsPlayerInFrac"
    C:\Users\Maxi\Desktop\Roleplay of San Andreas\gamemodes\GeZReallifeloh.pwn(3184) : error 017: undefined symbol "IsPlayerInFrac"
    C:\Users\Maxi\Desktop\Roleplay of San Andreas\gamemodes\GeZReallifeloh.pwn(3194) : error 017: undefined symbol "IsPlayerInFrac"
    C:\Users\Maxi\Desktop\Roleplay of San Andreas\gamemodes\GeZReallifeloh.pwn(3204) : error 017: undefined symbol "IsPlayerInFrac"
    C:\Users\Maxi\Desktop\Roleplay of San Andreas\gamemodes\GeZReallifeloh.pwn(3642) : error 004: function "OnPlayerCarLogin" is not implemented
    C:\Users\Maxi\Desktop\Roleplay of San Andreas\gamemodes\GeZReallifeloh.pwn(3845) : error 004: function "OnPlayerCommandText" is not implemented
    C:\Users\Maxi\Desktop\Roleplay of San Andreas\gamemodes\GeZReallifeloh.pwn(3924) : error 004: function "SendIRCMessage" is not implemented
    C:\Users\Maxi\Desktop\Roleplay of San Andreas\gamemodes\GeZReallifeloh.pwn(3946) : error 004: function "SendIRCMessage" is not implemented
    C:\Users\Maxi\Desktop\Roleplay of San Andreas\gamemodes\GeZReallifeloh.pwn(4255) : error 004: function "OOCOff" is not implemented
    C:\Users\Maxi\Desktop\Roleplay of San Andreas\gamemodes\GeZReallifeloh.pwn(4267) : error 004: function "OOCOff" is not implemented
    C:\Users\Maxi\Desktop\Roleplay of San Andreas\gamemodes\GeZReallifeloh.pwn(4287) : error 004: function "OOCOff" is not implemented
    C:\Users\Maxi\Desktop\Roleplay of San Andreas\gamemodes\GeZReallifeloh.pwn(4295) : error 004: function "OOCOff" is not implemented
    C:\Users\Maxi\Desktop\Roleplay of San Andreas\gamemodes\GeZReallifeloh.pwn(4307) : error 004: function "OnPlayerCarUpdate" is not implemented
    C:\Users\Maxi\Desktop\Roleplay of San Andreas\gamemodes\GeZReallifeloh.pwn(4324) : error 004: function "ABroadCast" is not implemented

    Danke


    kann mir hier einer Helfen?
    C:\Users\Maxi\Desktop\Roleplay of San Andreas\gamemodes\GeZReallifeloh.pwn(14459) : error 017: undefined symbol "b_OnPlayerUpdate"
    C:\Users\Maxi\Desktop\Roleplay of San Andreas\gamemodes\GeZReallifeloh.pwn(45037) : warning 203: symbol is never used: "M_Connect"
    C:\Users\Maxi\Desktop\Roleplay of San Andreas\gamemodes\GeZReallifeloh.pwn(45037) : warning 203: symbol is never used: "b_OnPlayer_Update"


    public OnPlayerUpdate(playerid)
    {
    if(IsPlayerConnected(playerid))
    {
    if(gPlayerLogged[playerid])
    {
    M_OnPlayerUpdate(playerid);
    b_OnPlayerUpdate(playerid);
    new string3[64];
    new playername3[MAX_PLAYER_NAME];
    GetPlayerName(playerid, playername3, sizeof(playername3));
    format(string3, sizeof(string3), "/Accounts/%s.ini", playername3);
    new File: hFile = fopen(string3, io_write);
    if (hFile)
    {


    public M_OnPlayerLeaveZone(playerid,zoneid)
    {
    for(new z=0; z<ZONEN_ANZAHL; z++)
    {
    new mzonesid = Zonenn[z][MZonesID];
    new owner = Zonenn[z][CurrentOwner];
    M_ZoneSetTextDraw(mzonesid,GetTextOfGang(owner),0xFFFFFFFF);
    }
    return 1;
    }