Jump to content

Chaos92

Members
  • Posts

    1537
  • Joined

  • Last visited

  • Days Won

    35

Community Answers

  1. Chaos92's post in Request 2020-01-08aRagexe clean undiff was marked as the answer   
    Why are you using 2020 Clients ? its not even fully supported yet for rAthena.
    For now currently rAthena using 20180620 client date.
     
    Btw you can download Nemo and use it at your computer.
    http://nemo.herc.ws/downloads/
    Nemo can be downloaded from https://gitlab.com/4144/Nemo
  2. Chaos92's post in Fluxcp - Slide Speed •FIXED was marked as the answer   
    If im not mistaken, this Fire theme by Ea-dev.
    themes/default/main/index.php and find  variable 'data-cycle-timeout' .
    Change the numbers and try again.
  3. Chaos92's post in Fluxcp MVP Ranking was marked as the answer   
    Im sorry, its in servers.php
     
    'ServerName' => 'FluxRO',   // Global database configuration (excludes logs database configuration).   'DbConfig' => array(   //'Socket' => '/tmp/mysql.sock',   //'Port' => 3306,   //'Encoding' => 'utf8', // Connection encoding -- use whatever here your MySQL tables collation is.   'Convert' => 'utf8',   // -- 'Convert' option only works when 'Encoding' option is specified and iconv (http://php.net/iconv) is available.   // -- It specifies the encoding to convert your MySQL data to on the website (most likely needs to be utf8)   'Hostname' => '127.0.0.1',   'Username' => 'ragnarok',   'Password' => 'ragnarok',   'Database' => 'ragnarok',   'Persistent' => true,   'Timezone' => null // Example: '+0:00' is UTC.   // The possible values of 'Timezone' is as documented from the MySQL website:   // "The value can be given as a string indicating an offset from UTC, such as '+10:00' or '-6:00'."   // "The value can be given as a named time zone, such as 'Europe/Helsinki', 'US/Eastern', or 'MET'." (see below continuation!)   // **"Named time zones can be used only if the time zone information tables in the mysql database have been created and populated."   ),   // This is kept separate because many people choose to have their logs   // database accessible under different credentials, and often on a   // different server entirely to ensure the reliability of the log data.   'LogsDbConfig' => array(   //'Socket' => '/tmp/mysql.sock',   //'Port' => 3306,   //'Encoding' => null, // Connection encoding -- use whatever here your MySQL tables collation is.   'Convert' => 'utf8',   // -- 'Convert' option only works when 'Encoding' option is specified and iconv (http://php.net/iconv) is available.   // -- It specifies the encoding to convert your MySQL data to on the website (most likely needs to be utf8)   'Hostname' => '127.0.0.1',   'Username' => 'ragnarok',   'Password' => 'ragnarok',   'Database' => 'ragnarok',   'Persistent' => true,   'Timezone' => null // Possible values is as described in the comment in DbConfig.   ),
  4. Chaos92's post in help script: buildin_getmapxy: Invalid type 0. was marked as the answer   
    Check your script and change 0 to any object below.
    *getmapxy("<variable for map name>",<variable for x>,<variable for y>{,<type>,"<search value>"})       This function will locate a character object, NPC object or pet's coordinates   and place their coordinates into the variables specified when calling it. It   will return 0 if the search was successful, and -1 if the parameters given were   not variables or the search was not successful.       Type is the type of object to search for:       BL_PC - Character object (default)   BL_NPC - NPC object   BL_PET - Pet object   BL_HOM - Homunculus object   BL_MER - Mercenary object   BL_ELEM - Elemental object  
    https://github.com/rathena/rathena/blob/master/doc/script_commands.txt
  5. Chaos92's post in R> VIP Healer NPC was marked as the answer   
    if (vip_status(1)) {
    sc_start SC_STRFood,360000,10;
    sc_start SC_AGIFood,360000,10;
    sc_start SC_VITFood,360000,10;
    sc_start SC_INTFood,360000,10;
    sc_start SC_DEXFood,360000,10;
    sc_start SC_LUKFood,360000,10;
    specialeffect2 EF_INCAGILITY;
    sc_start SC_INCREASEAGI,240000,10;
    specialeffect2 EF_BLESSING;
     sc_start SC_BLESSING,240000,10;
    }
    and add some more buff u need
  6. Chaos92's post in Changing the function to another website was marked as the answer   
    data\luafiles514\lua files\datainfo\tb_cashshop_banner.lub <--- for the banner
    msgstringtable.txt line 3302 for button charging links.
  7. Chaos92's post in please help! error while running the server was marked as the answer   
    u type 'rangarok' and ragnarok but in screenshot ragnarok and ragnarok.
  8. Chaos92's post in StarGladiator Skill No damage was marked as the answer   
    Try restart server ? Maybe you are using @reloadskilldb which have issue if you're using older than github latest commit right now.
  9. Chaos92's post in Desperado Skill Bug was marked as the answer   
    I think you need to get the latest rAthena in git. The issue occured when u @reloadskilldb isnt it ?
    If yes, then this is the commit to fix it.
    https://github.com/rathena/rathena/commit/496f362ec973224c20fc6d37664f11d277ebcf83 
  10. Chaos92's post in Client crashing when warping to gefenia01 was marked as the answer   
    if you're using Thor Patcher, try to use this (I prepare it earlier, didnt manage to find the real file because I already thor and delete it)
    https://mega.nz/#!VdYVQCZD!dF5tUq90hJqiBfxyWbBE-npIELqUiVxdoSPKjwonbM4
     
    Update : 13 December 2020.

    Link : https://mega.nz/file/lJhAhYBB#dF5tUq90hJqiBfxyWbBE-npIELqUiVxdoSPKjwonbM4

    Note : This is .thor file. So you can directly patch it using thor.
  11. Chaos92's post in How update rathena emulator by git programs ? was marked as the answer   
    thats mean u need to have the updated pull request that already merged with latest rathena commit.
    fix the conflicts when u git pull and should be okay.
  12. Chaos92's post in Problem drops rates was marked as the answer   
    I dont understand your question but... I think your question regarding renewal drop

    src/config/renewal.h
    /// Renewal drop rate algorithms   /// (disable by commenting the line)   ///   /// Leave this line to enable renewal item drop rate algorithms   /// While enabled a special modified based on the difference between the player and monster level is applied   /// Based on the http://irowiki.org/wiki/Drop_System#Level_Factor table   #define RENEWAL_DROP
  13. Chaos92's post in How to install Flux CP on VHOST.ROCKS VPS was marked as the answer   
    You need to add privilege in your database.
    Add user privilege with details hostname (of your web hosting), username and password in your database. The error will shows your hostname if you didnt know what is your hostname.
  14. Chaos92's post in Change spriting for client renewal was marked as the answer   
    Make sure you use increase headgear ID patches in nemo
  15. Chaos92's post in Fluxcp error was marked as the answer   
    you need to enable debug or check the error log.

    Or maybe you have set SMTP or email for verification but its not correctly setup.

    There are so many errors that can lead to this, so better you enable debug and check error log first.
     
    **And disable back the debug after you get the detailed information.
  16. Chaos92's post in help Resource File Loading Fail when adding Custom Item. was marked as the answer   
    make sure you diffed your client with max headgear id 32000
  17. Chaos92's post in script for gm list was marked as the answer   
    atcommand log if you want to see their commands log.
  18. Chaos92's post in Headgear Sprites from Updated kRO Client will not show was marked as the answer   
    accessoryid.lub and accname.lub
  19. Chaos92's post in Help eror please was marked as the answer   
    ask your hosting to enable connection from another IPs
  20. Chaos92's post in Can't enter on server because of packet error.. was marked as the answer   
    I didnt said u need to add that packet_keys
    its its clearly
    packet_ver: 45
    packet_keys_use: 45
    only.
  21. Chaos92's post in I can´t use battle mode keys. was marked as the answer   
    Make sure your clients are compatible with your data folder.
    Client Resources : https://github.com/zackdreaver/RO-Clientresources
    For Renewal : https://github.com/zackdreaver/ROenglishRE
    For Pre-RE : https://github.com/zackdreaver/ROenglishPRE
    Thanks to @zackdreaver !
  22. Chaos92's post in Can I have my Server separate to my WebHosting/Cpanel? was marked as the answer   
    1. Yes you can. Just make sure that Hosting you choose can open ports so that your CP Flux can shows login, char and map server status 'ONLINE'
    2. You doesnt need to do anything with servers. Just use your VPS IP in clientinfo.xml for server login connection.
    3. Prepare VPS Details eg: username, password, database name since you will insert MYSQL details in Flux config/servers.php . And Also add users in privilleges in your phpmyadmin or any database manager that you use if needed.
  23. Chaos92's post in Old Izlude Map In PVP was marked as the answer   
    get izlude.gat, izlude.gnd and izlude.rsw (old izlude)
    rename those to pvp_y_1-2.gat , pvp_y_1-2.gnd and pvp_y_1-2.rsw
    and put in your data folder / GRF
    after that load your mapcache in db/pre-re if pre-renewal mode and insert pvp_y_1-2
  24. Chaos92's post in phpmyadmin & MySQL Query Browser was marked as the answer   
    run the from here https://github.com/rathena/rathena/tree/master/sql-files/upgrades
    for your screenshot, its here : https://github.com/rathena/rathena/blob/master/sql-files/upgrades/upgrade_20160814.sql
  25. Chaos92's post in Hi Costume Tab was marked as the answer   
    possible. just change slotnum in iteminfo,lua and change the slot section in itemdb of that item
×
×
  • Create New...