Jump to content

ReLoaD

Membru
  • Posts

    59
  • Joined

  • Last visited

    Never

Posts posted by ReLoaD

  1. Nu suntem aici ca sa iti dam mura-n gura, incearca sa rezolvi si doar daca nu reusesti postezi liniile si noi te ajutam.

    Sfaturi: Ai aici un ghid pentru a afla pozitia jucatorului: http://wiki.sa-mp.com/wiki/IsPlayerInRangeOfPoint

    Si aici un ghid pentru setarea pozitiei: http://wiki.sa-mp.com/wiki/SetPlayerPos

  2. [pawn]

    forward TimerAvion(playerid); // La inceputul scriptului

    if(strcmp(cmd, "/flylv", true) == 0) // La OnPlayerCommandText

    {

        SetPlayerPos(playerid, X, Y, Z);

        SetPlayerInterior(playerid, A);

        SendClientMessage(playerid, COLOR_WHITE, "Mesaj");

        SetTimerEx("TimerAvion", 5000, false, "d", playerid);

    }

    public TimerAvion(playerid) // deasupra OnGameModeInit

    {

        SetPlayerPos(playerid, X, Y, Z);

        SetPlayerInterior(playerid, A);

        SendClientMessage(playerid, COLOR_WHITE, "Mesaj");

        return 1;

    }

    [/pawn]

  3. [pawn]strcat(BigString, "{00C0FF}|{B7FF00}/dfacebook  -> Iti stergi Contul de FaceBook                                  \n", 3500 );[/pawn]

    In loc de pauzele acelea mari de dupa /dfacebook si FaceBook pui /t.

  4. Ok, deci astazi am incercat sa trec GM-ul pe MySQL. ( in fine, am luat parti din moderntopia pentru ca pentru mine MySQL = chineza )

    Totul merge extrem de bine pana ce trec de logare. Tabelele se creaza perfect, dar primesc urmatoarele erori in log, pentru fiecare data in parte. Server-ul nu se inchide, dar calculatorul suna ca naiba.

    [20:07:33] Error in mysql_query: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Char='',ContractTime='',DetSkill='',SexSkill='',BoxSkill='',LawSkill='',MechSkil' at line 1
    [20:07:33] Error in mysql_query: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Int='?·ˆ??šÍf',Local='?·ˆ??šÍf',Team='·ˆ??šÍf',Model=' at line 1
    [20:07:34] Error in mysql_query: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Char='',ContractTime='',DetSkill='',SexSkill='',BoxSkill='',LawSkill='',MechSkil' at line 1
    [20:07:34] Error in mysql_query: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Int='?·ˆ??šÍf',Local='?·ˆ??šÍf',Team='·ˆ??šÍf',Model=' at line 1
    [20:07:34] Error in mysql_query: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Char='',ContractTime='',DetSkill='',SexSkill='',BoxSkill='',LawSkill='',MechSkil' at line 1
    [20:07:34] Error in mysql_query: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Int='?·ˆ??šÍf',Local='?·ˆ??šÍf',Team='·ˆ??šÍf',Model=' at line 1
    [20:07:35] Error in mysql_query: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Char='',ContractTime='',DetSkill='',SexSkill='',BoxSkill='',LawSkill='',MechSkil' at line 1
    [20:07:35] Error in mysql_query: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Int='?·ˆ??šÍf',Local='?·ˆ??šÍf',Team='·ˆ??šÍf',Model=' at line 1
    [20:07:36] Error in mysql_query: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Char='',ContractTime='',DetSkill='',SexSkill='',BoxSkill='',LawSkill='',MechSkil' at line 1
    [20:07:36] Error in mysql_query: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Int='?·ˆ??šÍf',Local='?·ˆ??šÍf',Team='·ˆ??šÍf',Model=' at line 1
    [20:11:21] Error in mysql_query: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Char='',ContractTime='',DetSkill='',SexSkill='',BoxSkill='',LawSkill='',MechSkil' at line 1
    [20:11:21] Error in mysql_query: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Int='?·ˆ??šÍf',Local='?·ˆ??šÍf',Team='·ˆ??šÍf',Model=' at line 1
    [20:11:22] Error in mysql_query: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Char='',ContractTime='',DetSkill='',SexSkill='',BoxSkill='',LawSkill='',MechSkil' at line 1
    [20:11:22] Error in mysql_query: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Int='?·ˆ??šÍf',Local='?·ˆ??šÍf',Team='·ˆ??šÍf',Model=' at line 1
    [20:11:22] Error in mysql_query: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Char='',ContractTime='',DetSkill='',SexSkill='',BoxSkill='',LawSkill='',MechSkil' at line 1
    [20:11:22] Error in mysql_query: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Int='?·ˆ??šÍf',Local='?·ˆ??šÍf',Team='·ˆ??šÍf',Model=' at line 1
    

    Acesta e callback-ul care actualizeaza datele:

    http://pastebin.com/RnZChkwX

    Iar aceasta e baza mea de date:

    http://www.mediafire.com/?gbppgy534unotkp

    Ma poate ajuta cineva?

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.