Beiträge von StYl3z

    Mit der aktuellsten Version passiert folgendes beim compilen:

    mit Version 4.0.2:

    Code
    C:\Users\styles\Desktop\samp037_svr_R2-1-1_win32\gamemodes\bare.pwn(75) : warning 213: tag mismatch
    C:\Users\styles\Desktop\samp037_svr_R2-1-1_win32\gamemodes\bare.pwn(76) : warning 213: tag mismatch
    C:\Users\styles\Desktop\samp037_svr_R2-1-1_win32\gamemodes\bare.pwn(77) : warning 213: tag mismatch
    Pawn compiler 3.2.3664              Copyright (c) 1997-2006, ITB CompuPhase
    
    
    3 Warnings.

    warning 213: tag mismatch tritt auf, bei folgendem Codeabschnitt:

    Code
    new Float:x,Float:y,Float:z;
    GetPlayerPos(playerid,x,y,z);
    INI_WriteFloat(File,"posX",x);
    INI_WriteFloat(File,"posY",y);
    INI_WriteFloat(File,"posZ",z);

    der mismatch tritt beim WriteFloat auf.

    Benutze y_ini.

    Die Sequenz tritt im Callback OnPlayerDisconnect(); auf.