Jump to content

Psyz

Members
  • Content Count

    48
  • Joined

  • Last visited

Posts posted by Psyz


  1. hey guys.

     

    I am experiencing lag when loading the character as well as when the player tries to return to the character select screen. It's a delay of seconds, but it's annoying. Hexed 20180621

     

    Another question, taking advantage of the topic, concerns the use of the emulator (version 2018) in arm8, I disabled memory management, but I wanted to know if it is stable to use on a server with an active audience.


  2. On 8/30/2014 at 5:11 PM, sever said:

    Help! I can already connect to my own server, and the sprites are loading well. The textures on the other hand are not found. I have attached screenshots below. I already added permissions to the data folder and everything else in it.

     

     

     

    oasQbRd.jpg

     

    2zhphsp.jpg

     

     

    Failed to load resource: the server responded with a status of 404 (Not Found) http://192.168.1.213...½º/bgi_temp.bmp

    [Thread] Can't get file (data/texture/À¯ÀúÀÎÅÍÆäÀ̽º/bgi_temp.bmp)

    @Dastgirknow how to fix it?

    I have the same problem, does not load my grf but the (grf.robrowser) loads normal.


  3. 1 hour ago, Kuya Jeo said:

    Você não pode se conectar ao seu cliente se tiver o gepard ao usar o robrowser.

    yes i know, more using the robrowser, as i said, it can be used on all platforms because it is used by a browser

     

     

    andro not.


  4. And folks, I'm trying to configure roBrowser, so I set everything up as the guide plus my screen goes black, when I debug it he says he is not identifying the data.grf, but through the remote robrowser client he opens it.

     

     

     

    If anyone wants to help me, I am grateful, because I am wanting to use it here in Brazil, the two mobile services today for sale are extremely expensive 400 ~ 500 dollars, converting it into my 3000 currency.

     

     

     

     

     

     

     

    If someone knows how to configure andro's clientinfo to accept gepard, it also helps!

    But I have a preference in roBrowser no matter how old it is yet UX is much better, and is suitable for all platforms.


  5. I have the following problem.

     

    let's put the situation in stages

     

    Player X is in the redemption of Player Y.

    Player X is equipped with Gr and raydric.

    When player X takes a hit from player Z, paladin Y takes 400k damage.

     

    But when player X takes the blue from player Z, out of devotion, he takes 700k damage.

     

    In short, is my devotion reducing the damage?

    Or did I miss some configuration?


  6. On 13/11/2020 at 13:55, Verzeltainne said:

    Eu me sinto complacente ao usar o Windows para Hercules, qual seria o Linux " mais fácil " (não sei a palavra certa para dizer lol ) para usar no Herc? 

    In my point of view, the best linux OS to use is ubuntu, as being more simplified, plus centOS is already lighter, requires a little more knowledge.


  7. 11 hours ago, 4144 said:

    com codepages é difícil. se você já tinha banco de dados e tabelas na página de código errada, pode ser necessário alterar a página de código do banco de dados para a tabela e para a coluna. ou para todos eles

    depende de como as páginas de código são usadas em suas tabelas.

     

    também precisa selecionar a página de código com 8 bits sem validação. algumas páginas de código, mesmo que sejam de 8 bits, irão lançar erros em caracteres errados.

     

    I did not perform any editing in the database.

    the tables are also those of Hercules himself.

     

    these characters are from the portuguese language (Brazil) in this case are accents (é, ão, você)


  8. [SQL]: DB error - Incorrect string value: '\xE1' for column 'message' at row 1
    [Debug]: at log.c:422 - INSERT DELAYED INTO `chatlog` (`time`, `type`, `type_id`, `src_charid`, `src_accountid`, `src_map`, `src_map_x`, `src_map_y`, `dst_charname`, `message`) VALUES (NOW(), 'O', '0', '165109', '2000000', 'prontera', '100', '178', ?, ?)

    I'm getting sql error, I already changed the encoding in the table to accept more than 4bits, but it still persists


  9. 4 hours ago, AnnieRuru said:

    /** * Loads persistent NPC Barter Data from SQL **/ static void npc_barter_fromsql(void) { struct SqlStmt *stmt = SQL->StmtMalloc(map->mysql_handle); char name[NAME_LENGTH + 1]; int itemid; int amount; int removeId; int removeAmount; if (SQL_ERROR == SQL->StmtPrepare(stmt, "SELECT `name`, `itemId`, `amount`, `priceId`, `priceAmount` FROM `%s`", map->npc_barter_data_db) || SQL_ERROR == SQL->StmtExecute(stmt) ) { SqlStmt_ShowDebug(stmt); SQL->StmtFree(stmt); return; }

    
    /**
     * Loads persistent NPC Barter Data from SQL
     **/
    static void npc_barter_fromsql(void)
    {
        struct SqlStmt *stmt = SQL->StmtMalloc(map->mysql_handle);
        char name[NAME_LENGTH + 1];
        int itemid;
        int amount;
        int removeId;
        int removeAmount;
    
        if (SQL_ERROR == SQL->StmtPrepare(stmt, "SELECT `name`, `itemId`, `amount`, `priceId`, `priceAmount` FROM `%s`", map->npc_barter_data_db)
            || SQL_ERROR == SQL->StmtExecute(stmt)
            ) {
            SqlStmt_ShowDebug(stmt);
            SQL->StmtFree(stmt);
            return;
        }

    npc_barter_data_db is
    https://github.com/HerculesWS/Hercules/blob/stable/conf/common/inter-server.conf#L120

    npc_barter_data_db: "npc_barter_data"

    
    npc_barter_data_db: "npc_barter_data"

     

    means you are missing a table name `npc_barter_data`

    https://github.com/HerculesWS/Hercules/blob/stable/sql-files/upgrades/2018-12-29--07-51.sql

     

    how can you ignore the SQL update file ?

    the problem was related to storage package

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.