Beiträge von Eljero

    stock mysql_GetInt(Table[], Field[], Where[], Is[])
    {
    new query[128];
    mysql_real_escape_string(Table, Table);
    mysql_real_escape_string(Field, Field);
    mysql_real_escape_string(Where, Where);
    mysql_real_escape_string(Is, Is);
    format(query, 128, "SELECT `%s` FROM `%s` WHERE `%s` = '%s'", Field, Table, Where, Is);
    mysql_function_query(mysqlconnect, query, false, "", "");
    mysql_store_result();
    new sqlint = mysql_fetch_int();
    mysql_free_result();
    return sqlint;
    }


    Wie wird so ein return des Wertes in einem MySQL Plugin R7 gemacht, da mysql_fetch_int nicht mehr existiert seit der R7.

    Kann mir jemand genau die geupdateten Includes zukommen lassen, welche ich für den Gamemode benötige, ohne das sich Errors im Script bilden(Mysql)?
    Sprich die passende MySQL Version, ohne das der Error File or Function not found auftritt :D
    Auch die sscanf Plugins, falls diese von nöten sind zu aktualisieren.

    Naja, das Standart Zeugs halt, da sich die Incldues ja mit den neueren Versionen verändern.
    Da ich mir den Script halt nur mal anschauen möchte, habe ich ungern die Lust alles auszutauschen.


    C:\Users\Lukas\Desktop\NaMe oF LiFe\gamemodes\Nol.pwn(16248) : error 035: argument type mismatch (argument 1)
    C:\Users\Lukas\Desktop\NaMe oF LiFe\gamemodes\Nol.pwn(16253) : error 035: argument type mismatch (argument 1)
    C:\Users\Lukas\Desktop\NaMe oF LiFe\gamemodes\Nol.pwn(16258) : error 035: argument type mismatch (argument 1)
    C:\Users\Lukas\Desktop\NaMe oF LiFe\gamemodes\Nol.pwn(16263) : error 035: argument type mismatch (argument 1)
    C:\Users\Lukas\Desktop\NaMe oF LiFe\gamemodes\Nol.pwn(16268) : error 035: argument type mismatch (argument 1)
    C:\Users\Lukas\Desktop\NaMe oF LiFe\gamemodes\Nol.pwn(16273) : error 035: argument type mismatch (argument 1)
    C:\Users\Lukas\Desktop\NaMe oF LiFe\gamemodes\Nol.pwn(16278) : error 035: argument type mismatch (argument 1)
    C:\Users\Lukas\Desktop\NaMe oF LiFe\gamemodes\Nol.pwn(16283) : error 035: argument type mismatch (argument 1)
    C:\Users\Lukas\Desktop\NaMe oF LiFe\gamemodes\Nol.pwn(16288) : error 035: argument type mismatch (argument 1)
    C:\Users\Lukas\Desktop\NaMe oF LiFe\gamemodes\Nol.pwn(16293) : error 035: argument type mismatch (argument 1)
    C:\Users\Lukas\Desktop\NaMe oF LiFe\gamemodes\Nol.pwn(16298) : error 035: argument type mismatch (argument 1)
    C:\Users\Lukas\Desktop\NaMe oF LiFe\gamemodes\Nol.pwn(16303) : error 035: argument type mismatch (argument 1)
    C:\Users\Lukas\Desktop\NaMe oF LiFe\gamemodes\Nol.pwn(16307) : error 035: argument type mismatch (argument 1)
    C:\Users\Lukas\Desktop\NaMe oF LiFe\gamemodes\Nol.pwn(50916) : error 035: argument type mismatch (argument 1)
    C:\Users\Lukas\Desktop\NaMe oF LiFe\gamemodes\Nol.pwn(50917) : error 017: undefined symbol "mysql_store_result"
    C:\Users\Lukas\Desktop\NaMe oF LiFe\gamemodes\Nol.pwn(50918) : error 017: undefined symbol "mysql_num_rows"
    C:\Users\Lukas\Desktop\NaMe oF LiFe\gamemodes\Nol.pwn(50919) : error 017: undefined symbol "mysql_free_result"
    C:\Users\Lukas\Desktop\NaMe oF LiFe\gamemodes\Nol.pwn(50928) : warning 224: indeterminate array size in "sizeof" expression (symbol "max_len")
    C:\Users\Lukas\Desktop\NaMe oF LiFe\gamemodes\Nol.pwn(50930) : error 035: argument type mismatch (argument 1)
    C:\Users\Lukas\Desktop\NaMe oF LiFe\gamemodes\Nol.pwn(50937) : warning 224: indeterminate array size in "sizeof" expression (symbol "max_len")
    C:\Users\Lukas\Desktop\NaMe oF LiFe\gamemodes\Nol.pwn(50939) : error 035: argument type mismatch (argument 1)
    C:\Users\Lukas\Desktop\NaMe oF LiFe\gamemodes\Nol.pwn(50940) : error 017: undefined symbol "mysql_store_result"
    C:\Users\Lukas\Desktop\NaMe oF LiFe\gamemodes\Nol.pwn(50941) : error 017: undefined symbol "mysql_fetch_row"
    C:\Users\Lukas\Desktop\NaMe oF LiFe\gamemodes\Nol.pwn(50942) : error 017: undefined symbol "mysql_free_result"
    C:\Users\Lukas\Desktop\NaMe oF LiFe\gamemodes\Nol.pwn(50948) : warning 224: indeterminate array size in "sizeof" expression (symbol "max_len")
    C:\Users\Lukas\Desktop\NaMe oF LiFe\gamemodes\Nol.pwn(50949) : warning 224: indeterminate array size in "sizeof" expression (symbol "max_len")
    C:\Users\Lukas\Desktop\NaMe oF LiFe\gamemodes\Nol.pwn(50950) : warning 224: indeterminate array size in "sizeof" expression (symbol "max_len")
    C:\Users\Lukas\Desktop\NaMe oF LiFe\gamemodes\Nol.pwn(50951) : warning 224: indeterminate array size in "sizeof" expression (symbol "max_len")
    C:\Users\Lukas\Desktop\NaMe oF LiFe\gamemodes\Nol.pwn(50953) : error 035: argument type mismatch (argument 1)
    C:\Users\Lukas\Desktop\NaMe oF LiFe\gamemodes\Nol.pwn(50954) : error 017: undefined symbol "mysql_store_result"
    C:\Users\Lukas\Desktop\NaMe oF LiFe\gamemodes\Nol.pwn(50955) : error 017: undefined symbol "mysql_fetch_int"
    C:\Users\Lukas\Desktop\NaMe oF LiFe\gamemodes\Nol.pwn(50956) : error 017: undefined symbol "mysql_free_result"

    Heyho,


    Ich wollte euch mal fragen, ob ihr irgendwelche Tutorials kennt, wie man SA:MP auf dem Mac nutzt.
    (Ohne Bootstrap o.a. zu verwenden)


    Danke an euch schonmal :thumbup:

    Ja, sind korrekt
    Ich verbinde über Localhost.
    Das einzigste, dass ich nicht alle Fenster ausfüllen kann wie z.B. wie email abfragt wird, da diese nicht geloggt wird.

    Der PHP Error Log sagt nix.


    Der normale nur das hier :



    [Fri Feb 20 13:32:21.001271 2015] [ssl:warn] [pid 1950] AH01906: www.example.com:443:0 server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
    [Fri Feb 20 13:32:21.001570 2015] [ssl:warn] [pid 1950] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
    [Fri Feb 20 13:32:21.001781 2015] [suexec:notice] [pid 1950] AH01232: suEXEC mechanism enabled (wrapper: /Applications/XAMPP/xamppfiles/bin/suexec)
    [Fri Feb 20 13:32:22.001304 2015] [ssl:warn] [pid 1953] AH01906: www.example.com:443:0 server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
    [Fri Feb 20 13:32:22.001408 2015] [ssl:warn] [pid 1953] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
    [Fri Feb 20 13:32:22.001623 2015] [lbmethod_heartbeat:notice] [pid 1953] AH02282: No slotmem from mod_heartmonitor
    [Fri Feb 20 13:32:22.001647 2015] [auth_digest:notice] [pid 1953] AH01757: generating secret for digest authentication ...
    [Fri Feb 20 13:32:22.012516 2015] [mpm_prefork:notice] [pid 1953] AH00163: Apache/2.4.10 (Unix) OpenSSL/1.0.1j PHP/5.5.19 mod_perl/2.0.8-dev Perl/v5.16.3 configured -- resuming normal operations
    [Fri Feb 20 13:32:22.012584 2015] [core:notice] [pid 1953] AH00094: Command line: '/Applications/XAMPP/xamppfiles/bin/httpd -E /Applications/XAMPP/xamppfiles/logs/error_log -D SSL -D PHP'