26 Errors ! Help.

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 ein Script, mit MySQL.
    Doch sobald ich es Compiled habe, entsteht dort 26 Errors.
    Ich hoffe mir kann jemand helfen... :whistling:


    C:\Users\Danii.Skiotpe\Desktop\Scriptz\gamemodes\pRP-Roleplay.pwn(3947) : error 035: argument type mismatch (argument 1)
    C:\Users\Danii.Skiotpe\Desktop\Scriptz\gamemodes\pRP-Roleplay.pwn(4372) : error 035: argument type mismatch (argument 1)
    C:\Users\Danii.Skiotpe\Desktop\Scriptz\gamemodes\pRP-Roleplay.pwn(5488) : error 017: undefined symbol "mysql_init"
    C:\Users\Danii.Skiotpe\Desktop\Scriptz\gamemodes\pRP-Roleplay.pwn(5489) : error 017: undefined symbol "mysql_init"
    C:\Users\Danii.Skiotpe\Desktop\Scriptz\gamemodes\pRP-Roleplay.pwn(5490) : error 017: undefined symbol "mysql_init"
    C:\Users\Danii.Skiotpe\Desktop\Scriptz\gamemodes\pRP-Roleplay.pwn(5491) : error 017: undefined symbol "mysql_init"
    C:\Users\Danii.Skiotpe\Desktop\Scriptz\gamemodes\pRP-Roleplay.pwn(10468) : error 035: argument type mismatch (argument 1)
    C:\Users\Danii.Skiotpe\Desktop\Scriptz\gamemodes\pRP-Roleplay.pwn(10484) : error 035: argument type mismatch (argument 1)
    C:\Users\Danii.Skiotpe\Desktop\Scriptz\gamemodes\pRP-Roleplay.pwn(10486) : error 035: argument type mismatch (argument 1)
    C:\Users\Danii.Skiotpe\Desktop\Scriptz\gamemodes\pRP-Roleplay.pwn(10488) : error 035: argument type mismatch (argument 1)
    C:\Users\Danii.Skiotpe\Desktop\Scriptz\gamemodes\pRP-Roleplay.pwn(10490) : error 035: argument type mismatch (argument 1)
    C:\Users\Danii.Skiotpe\Desktop\Scriptz\gamemodes\pRP-Roleplay.pwn(10492) : error 035: argument type mismatch (argument 1)
    C:\Users\Danii.Skiotpe\Desktop\Scriptz\gamemodes\pRP-Roleplay.pwn(10494) : error 035: argument type mismatch (argument 1)
    C:\Users\Danii.Skiotpe\Desktop\Scriptz\gamemodes\pRP-Roleplay.pwn(10496) : error 035: argument type mismatch (argument 1)
    C:\Users\Danii.Skiotpe\Desktop\Scriptz\gamemodes\pRP-Roleplay.pwn(10498) : error 035: argument type mismatch (argument 1)
    C:\Users\Danii.Skiotpe\Desktop\Scriptz\gamemodes\pRP-Roleplay.pwn(10500) : error 035: argument type mismatch (argument 1)
    C:\Users\Danii.Skiotpe\Desktop\Scriptz\gamemodes\pRP-Roleplay.pwn(10502) : error 035: argument type mismatch (argument 1)
    C:\Users\Danii.Skiotpe\Desktop\Scriptz\gamemodes\pRP-Roleplay.pwn(10504) : error 035: argument type mismatch (argument 1)
    C:\Users\Danii.Skiotpe\Desktop\Scriptz\gamemodes\pRP-Roleplay.pwn(10506) : error 035: argument type mismatch (argument 1)
    C:\Users\Danii.Skiotpe\Desktop\Scriptz\gamemodes\pRP-Roleplay.pwn(10508) : error 035: argument type mismatch (argument 1)
    C:\Users\Danii.Skiotpe\Desktop\Scriptz\gamemodes\pRP-Roleplay.pwn(10510) : error 035: argument type mismatch (argument 1)
    C:\Users\Danii.Skiotpe\Desktop\Scriptz\gamemodes\pRP-Roleplay.pwn(10512) : error 035: argument type mismatch (argument 1)
    C:\Users\Danii.Skiotpe\Desktop\Scriptz\gamemodes\pRP-Roleplay.pwn(10514) : error 035: argument type mismatch (argument 1)
    C:\Users\Danii.Skiotpe\Desktop\Scriptz\gamemodes\pRP-Roleplay.pwn(10516) : error 035: argument type mismatch (argument 1)
    C:\Users\Danii.Skiotpe\Desktop\Scriptz\gamemodes\pRP-Roleplay.pwn(10518) : error 035: argument type mismatch (argument 1)
    C:\Users\Danii.Skiotpe\Desktop\Scriptz\gamemodes\pRP-Roleplay.pwn(10520) : error 035: argument type mismatch (argument 1)


    Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase



    26 Errors.


    Lg,
    Liam ( Danii)

  • Diese ganzen Fehler:
    Sry, ich weiß nicht wo ich das rausfinden kann mit: R7 oder so..
    Ich weiß auch nicht wie man davon was erstellt..@excuse


    for(new i=0; i<maxhauses; i++)
    {
    format(query,sizeof(query),"SELECT * FROM haus WHERE id='%i'",i);
    mysql_query(query);
    mysql_store_result();
    if(mysql_num_rows()==1)
    {
    mysql_fetch_field_("besitzer",data);
    strmid(Hausplaces[i][besitzer],data,0,35,35);
    mysql_fetch_field("kosten",data);
    Hausplaces[i][kosten] = strval(data);
    mysql_fetch_field("interior",data);
    Hausplaces[i][inter] = strval(data);
    mysql_fetch_field("world",data);
    Hausplaces[i][world] = strval(data);
    mysql_fetch_field("haus_x",data);
    Hausplaces[i][haus_x] = floatstr(data);
    mysql_fetch_field("haus_y",data);
    Hausplaces[i][haus_y] = floatstr(data);
    mysql_fetch_field("haus_z",data);
    Hausplaces[i][haus_z] = floatstr(data);
    mysql_fetch_field("e_haus_x",data);
    Hausplaces[i][e_haus_x] = floatstr(data);
    mysql_fetch_field("e_haus_y",data);
    Hausplaces[i][e_haus_y] = floatstr(data);
    mysql_fetch_field_row("e_haus_z",data);
    Hausplaces[i][e_haus_z] = floatstr(data);
    mysql_fetch_field_row("player_spawn",data);
    Hausplaces[i][player_spawn] = strval(data);
    mysql_fetch_field_row("verschlossen",data);
    Hausplaces[i][verschlossen] = strval(data);
    mysql_fetch_field_row("miete",data);
    Hausplaces[i][miete] = strval(data);
    mysql_fetch_field_row("money",data);
    Hausplaces[i][money] = strval(data);
    mysql_fetch_field_row("heal",data);
    Hausplaces[i][heal] = strval(data);
    mysql_fetch_field_row("lmittel",data);
    Hausplaces[i][lmittel] = strval(data);
    mysql_fetch_field_row("beds",data);
    Hausplaces[i][beds] = strval(data);
    mysql_fetch_field_row("maxbeds",data);
    Hausplaces[i][maxbeds] = strval(data);
    mysql_fetch_field_row( "TRASH",data);
    Hausplaces[i][trash] = strval(data);
    mysql_fetch_field("hanf",data);
    Hausplaces[i][hanf] = strval(data);
    mysql_fetch_field("koks",data);
    Hausplaces[i][koks] = strval(data);
    mysql_fetch_field("lsd",data);
    Hausplaces[i][lsd] = strval(data);
    mysql_fetch_field("mats",data);
    Hausplaces[i][mats] = strval(data);
    mysql_free_result();
    Hausplaces[i][active] = 1;

  • do.de - Domain-Offensive - Domains für alle und zu super Preisen