Jump to content

Chaos92

Members
  • Posts

    1543
  • Joined

  • Last visited

  • Days Won

    35

Everything posted by Chaos92

  1. yes, you can try to pull it or wait for it to be merged in master.
  2. https://github.com/rathena/rathena/pull/4725 try to take a look here, its still in code review and not merged in master yet.
  3. I dont know what translation are you using. But should have msgstringtable.txt in data folder. Example : https://github.com/zackdreaver/ROenglishRE/tree/master/Ragnarok/data in https://github.com/zackdreaver/ROenglishRE.git Example : https://github.com/llchrisll/ROenglishRE/tree/master/Ragnarok/data in https://github.com/llchrisll/ROenglishRE
  4. Depends on your GRF. Your GRF should have msgstringtable.txt using any translation client files. The files should be in GRF /data folder and to open GRF = can use GRF Editor.
  5. About the message, edit it in msgstringtable.txt in your GRF data folder. Try to search the keyword u want to change in it
  6. in your GRF. data/msgtstringtable.txt Search keyword 'Smooth'
  7. I give you an example . Check in itemdb. 2798,Will_Of_Exhausted_Angel,Will Of Exhausted Angel,4,0,,200,,0,,0,0x00008100,63,2,136,,99,0,0,{ if(strcharinfo(3)=="job3_arch02") { bonus2 bAddDefMonster,1761,50; bonus2 bAddDefMonster,1762,50; } },{},{} u can add bonus using strcharinfo(3) for exact map script.. or if im not mistaken you can use getmapflag(strcharinfo(3),mf_gvg) if you want to include all GVG map listed in GVG mapflag.
  8. By using item_noequip.txt. // Forbidden Items Database // Defines restrictions on equipment, items, and cards in map types and zones. // // Structure of Database: // ItemID,Flag // // Legend for 'Flag' field (bitmask): // 1 - restricted in normal maps // 2 - restricted in PVP // 4 - restricted in GVG // 8 - restricted in Battlegrounds // 16 - restricted in WOE:TE castles // Restricted zones - configured by 'restricted <number>' mapflag // 32 - restricted in zone 1 // 64 - restricted in zone 2 // 128 - restricted in zone 3 // 256 - restricted in zone 4 // 512 - restricted in zone 5 // 1024 - restricted in zone 6 // 2048 - restricted in zone 7 // 4096 - restricted in zone 8 // // Passing negative value as flag will unset the flag instead. // // Examples: // 1201,1 // Knife can't be worn on normal maps // 608,4 // Yggdrasil Seed can't be consumed in both GvG and WoE Castles // 4174,6 // Deviling Card has no effect in every PVP or GVG map, and during WoE // 501,32 // Red Potion can't be consumed on maps marked as 'restricted zone 1' // 519,322 // Milk can't be consumed in PVP and maps marked as 'restricted zone 2' or 'restricted zone 4' (256+64+2) // 519,-2 // Unset `restricted in PVP` flag from Milk. Making it usable in PVP again.
  9. You should import everything. and whats in itemdb_re or itemdb is just a database which u can view it it FluxCP.
  10. Are you sure you already set the variables .GetJobEquip below to true ? The Jobmaster NPC have a few settings line that you can change depends on your need a few lines before the line of code ends. .Platinum = true; // Get platinum skills automatically? .GetJobEquip = false; // Get job equipment (mostly weapons) on job change?
  11. StateIconList[EFST_IDs.EFST_OVERLAPEXPUP] = { haveTimeLimit = 1, posTimeLimitStr = 2, descript = { { "Malangdo Cat Can", COLOR_TITLE_BUFF }, { "%s", COLOR_TIME }, { "When defeating monsters" }, { "Increase Base Exp and JOB Exp rate received" }, { "Increase item drop rate" } } } in your GRF. data/luafiles514/lua files/stateicon/stateiconinfo.lub
  12. main/header.php <li><a href="<?php echo $this->url('donate'); ?>"><img src="<?php echo $this->themePath('img/nav.png'); ?>" alt=""></a></li> Thats mean : 1. Edit nav.jpg since its a picture or use the .PSD given (if they give it, sorry I didnt remember. If not then edit it yourself). 2. Change the link to any link you want (that already exist) or create one. Make sure the .php files are exist in themes and also modules.
  13. 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
  14. 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.
  15. define latest github. which commit.
  16. Chaos92

    Quarantine

    Already more than 30 days and otw for 40 days in Malaysia. Whats really hit me = internet disruption really bad. Theres a lot people stay at home, government giving free internet to all everyday 8-6 pm (some telcos are giving more). Please stay at home guys and practice social distancing. Eid celebration this year also not gonna be the same anymore.
  17. 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. ),
  18. feed it using the designated food. pet doesnt loot items but will have effect bonus effect for the pet's owner.
  19. set your client date and compile. It must because of the clientdate is set as default in emulator 20180620 but you're using different clients to connect.
  20. use nemo patcher https://gitlab.com/4144/Nemo/
  21. Client crash ? Then most probably client issue. Which character option ? If your login/char/map server crash then its related to emulator files issue.
×
×
  • Create New...