Jump to content

LysenkoAdv

Membru
  • Posts

    12
  • Joined

  • Last visited

Posts posted by LysenkoAdv

  1. [20:01:20]    (c) 2012 Alex "Y_Less" Cole  

    [20:01:20]  ===============================

    [20:01:20]   Loaded.
    [20:01:20]  Loading plugin: mysql.so
    [20:01:20]  >> plugin.mysql: R34 successfully loaded.
    [20:01:20]   Loaded.
    [20:01:20]  Loading plugin: streamer.so
    [20:01:20]

    *** Streamer Plugin v2.7.7 by Incognito loaded ***

    [20:01:20]   Loaded.
    [20:01:20]  Loaded 5 plugins.

    [20:01:20]
    [20:01:20] Filterscripts
    [20:01:20] ---------------
    [20:01:20]   Loaded 0 filterscripts.

    [20:01:20]  
    [20:01:20]  
    [20:01:20]  
    [20:01:20]  =======================================
    [20:01:20]  |                                     |
    [20:01:20]  |        YSI version 3.09.0684        |
    [20:01:20]  |        By Alex "Y_Less" Cole        |
    [20:01:20]  |                                     |
    [20:01:20]  =======================================
    [20:01:20]  
    [20:01:20]  
    [20:01:20]  
    [20:01:21] Server vehicles: 184
    [20:01:21] Safezones: 16
    [20:01:21] [debug] Run time error 4: "Array index out of bounds"
    [20:01:21] [debug]  Attempted to read/write array element at index 200 in array of size 200
    [20:01:21] [debug] AMX backtrace:
    [20:01:21] [debug] #0 001caae0 in public UpdateLabel (update=1, h=200) at C:\Users\x\OneDrive\Desktop\GM1\GM\gamemodes\play.pwn:17159
    [20:01:21] [debug] #1 0035d418 in public LoadProperty () at C:\Users\x\OneDrive\Desktop\GM1\GM\gamemodes\play.pwn:37348
    [20:01:21] [debug] #2 0009f640 in ?? () at C:\Users\x\OneDrive\Desktop\GM1\GM\gamemodes\play.pwn:2249
    [20:01:21] [debug] #3 0002be1c in public L_AFK_OnGM () at C:\Users\x\OneDrive\Desktop\GM1\GM\pawno\include\YSI\y_hooks/impl.inc:498
    [20:01:21] [debug] #4 native CallLocalFunction () in samp03svr
    [20:01:21] [debug] #5 0001cc30 in public SSCANF_OnGameModeInit () at C:\Users\x\OneDrive\Desktop\GM1\GM\pawno\include\AutoAFK.inc:47
    [20:01:21] [debug] #6 0001631c in public Itter_OnGameModeInit () at C:\Users\x\OneDrive\Desktop\GM1\GM\pawno\include\sscanf2.inc:205
    [20:01:21] [debug] #7 native CallLocalFunction () in samp03svr
    [20:01:21] [debug] #8 00014db4 in public ScriptInit_OnGameModeInit () at C:\Users\x\OneDrive\Desktop\GM1\GM\pawno\include\YSI\y_iterate.inc:791
    [20:01:21] [debug] #9 000139d4 in public PZone_OnGameModeInit () at C:\Users\x\OneDrive\Desktop\GM1\GM\pawno\include\YSI\internal\..\y_scriptinit.inc:171
    [20:01:21] [debug] #10 native CallLocalFunction () in samp03svr
    [20:01:21] [debug] #11 000079b4 in public OnGameModeInit () at C:\Users\x\OneDrive\Desktop\GM1\GM\pawno\include\playerzone.inc:429
    [20:01:21] Number of vehicle models: 56

    Are cineva idee?

  2. La 23.01.2019 la 7:15, Banditul a spus:

    Incearca asa

    
    CREATE TABLE `rpg_tickets` (
      `id` int(11) NOT NULL,
      `Author` text NOT NULL,
      `Player` text NOT NULL,
      `Details` text NOT NULL,
      `Date` datetime NOT NULL DEFAULT '1970-01-01 00:00:01' ON UPDATE CURRENT_TIMESTAMP,
      `Status` int(11) NOT NULL,
      `IP` varchar(32) NOT NULL
    ) ENGINE=InnoDB DEFAULT CHARSET=latin1;

    E posibil ca hostul sa foloseasca o versiune de mysql mai mica de 5.6 care nu accepta in DATETIME sa fie default CURRENT_TIMESTAMP

    De asemenea ai putea face asa si e acelasi lucru

    
    CREATE TABLE `rpg_tickets` (
      `id` int(11) NOT NULL,
      `Author` text NOT NULL,
      `Player` text NOT NULL,
      `Details` text NOT NULL,
      `Date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
      `Status` int(11) NOT NULL,
      `IP` varchar(32) NOT NULL
    ) ENGINE=InnoDB DEFAULT CHARSET=latin1;

     

    A fost a2a, multumesc mult pentru ajutor... incerc sa rezolv asta de 3 zile, ma bucur ca mai sunt si persoane ca si tine.

  3. La 23.01.2019 la 6:55, Banditul a spus:

    Poti arata acel CREATE TABLE rpg_tickets din fisierul .sql?

    E posibil ca pe localhost sa ai MariaDB si hostu sa foloseasca MySQL(sau vice versa) si sa fie o vloare pusa gresita la default


    -- --------------------------------------------------------

    --
    -- Structură tabel pentru tabel `rpg_tickets`
    --

    CREATE TABLE `rpg_tickets` (
      `id` int(11) NOT NULL,
      `Author` text NOT NULL,
      `Player` text NOT NULL,
      `Details` text NOT NULL,
      `Date` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
      `Status` int(11) NOT NULL,
      `IP` varchar(32) NOT NULL
    ) ENGINE=InnoDB DEFAULT CHARSET=latin1;

×
×
  • 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.