Jump to content

malamuc

Member
  • Posts

    8
  • Joined

  • Last visited

Posts posted by malamuc

  1. Hi folks,

     

    I on my server and really liked it.  Here's the sql event I used:

     DROP EVENT IF EXISTS resetVaults; CREATE EVENT resetVaults
       ON SCHEDULE EVERY 1 DAY
       COMMENT 'Sets safe codes to 0000 if not accessed for 14 days'
       DO
    UPDATE `object_data` SET `CharacterID` = 0
    WHERE
    `LastUpdated` < DATE_SUB(CURRENT_TIMESTAMP, INTERVAL 14 DAY) AND
    `Datestamp` < DATE_SUB(CURRENT_TIMESTAMP, INTERVAL 14 DAY) AND
    `CharacterID` > 0 AND
    `Classname` IN ('VaultStorageLocked') AND
    `Inventory` <> '[]' AND
    `Inventory` IS NOT NULL

    can anybody tell me how to add this to sql events? i'm trying to add via navicat "funcions". is it right?

  2. hi everybody. i have such my server issues: 
    1. often they are disconnected during a game with no rtp errors. example:

    15:35:07 | Player #7 stakan disconnected
    15:36:16 | Player #2 BlackManTmn disconnected
    15:36:44 | Player #13 durdom disconnected
    15:37:03 | Player #17 THORUSZ disconnected

    or

    14:30:48 | Player #4 rodrigo (852ff02e4543e4499f500c8c8d75563d) has been kicked by BattlEye: Client not responding

    14:30:59 | Player #4 rodrigo (852ff02e4543e4499f500c8c8d75563d) has been kicked by BattlEye: Client not responding
    this problem often interfere to connect for different players

    but the average ping is 40-100.
    And the main PROBLEM - deleting magazines, and other items after player relog or restart server

    has anybody faced problems like this?
    p.s sorry for my english

×
×
  • Create New...