Jump to content

M a p l e

Members
  • Posts

    271
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by M a p l e

  1. src/config/renewal.hpp put // in #define RENEWAL to disable renewal /// Leave this line to enable renewal specific support such as renewal formulas //#define RENEWAL
  2. Welcome, but you created a topic in the wrong area for your language, you have to speak English here. There is a specific area to speak in Portuguese. ( https://rathena.org/board/forum/74-portuguese-support/ ) And about your doubt, for that you need to do a lot of editing on the hexed client, and @Zell does great services.
  3. killed the attacked monster or by command? This usually happens when using command to kill all monsters But try changing the hexed version.
  4. ROenglishRE/petinfo.lub at master · llchrisll/ROenglishRE (github.com) and rathena/pet_db.yml at master · rathena/rathena (github.com)
  5. ROenglishRE/pettalktable.xml at master · llchrisll/ROenglishRE (github.com)
  6. He doesn't want to answer anyone. @Easycore
  7. @Balfear Which model did you use? I want to make my mobs and npcs in HD too
  8. Converted item database to YAML (#4335) · rathena/rathena@04cfe17 (github.com)
  9. This message will never appear 2 billion, you will have to edit it in msgstringtable.txt Edit this text the way you prefer. PS: Try conf/script_athena.conf input_max_value: 10000000 to input_max_value: 2000000000
  10. NEMO > Change guild exp limit
  11. Open lib/Flux/Template.php Search : /** * */ public function iconImage($itemID) { $path = sprintf(FLUX_DATA_DIR."/items/icons/".Flux::config('ItemIconNameFormat'), $itemID); $link = preg_replace('&/{2,}&', '/', "{$this->basePath}/$path"); return file_exists($path) ? $link : false; } /** * */ public function itemImage($itemID) { $path = sprintf(FLUX_DATA_DIR."/items/images/".Flux::config('ItemImageNameFormat'), $itemID); $link = preg_replace('&/{2,}&', '/', "{$this->basePath}/$path"); return file_exists($path) ? $link : false; } /** * */ public function monsterImage($monsterID) { $path = sprintf(FLUX_DATA_DIR."/monsters/".Flux::config('MonsterImageNameFormat'), $monsterID); $link = preg_replace('&/{2,}&', '/', "{$this->basePath}/$path"); return file_exists($path) ? $link : false; } Change to: /** * */ public function iconImage($itemID) { $path = sprintf(FLUX_DATA_DIR."/items/icons/".Flux::config('ItemIconNameFormat'), $itemID); $link = preg_replace('&/{2,}&', '/', "{$this->basePath}/$path"); return file_exists($path) ? $link : sprintf('https://static.divine-pride.net/images/items/item/'.Flux::config('ItemIconNameFormat'), $itemID); } /** * */ public function itemImage($itemID) { $path = sprintf(FLUX_DATA_DIR."/items/images/".Flux::config('ItemImageNameFormat'), $itemID); $link = preg_replace('&/{2,}&', '/', "{$this->basePath}/$path"); return file_exists($path) ? $link : sprintf('https://static.divine-pride.net/images/items/collection/'.Flux::config('ItemImageNameFormat'), $itemID); } /** * */ public function monsterImage($monsterID) { $path = sprintf(FLUX_DATA_DIR."/monsters/".Flux::config('MonsterImageNameFormat'), $monsterID); $link = preg_replace('&/{2,}&', '/', "{$this->basePath}/$path"); return file_exists($path) ? $link : sprintf('https://static.divine-pride.net/images/mobs/png/'.Flux::config('MonsterImageNameFormat'), $monsterID); } In config/application.php change "MonsterImageNameFormat" .gif to .png : 'MonsterImageNameFormat' => '%d.png', // The filename format for monster images (defaults to {monsterid}.gif). This will automatically pull images of divine-pride items and mobs.
  12. Map name > data/luafiles514/lua files/worldviewdata/worldviewdata_language.lub
  13. If using Centos, do this to increase the limit from 1024 to 4096 ./configure --with-maxconn=4096
  14. and clif.cpp? 9> ? \ Ragnarok - Emulators \ rAthena \ src \ map \ clif.cpp (13057,22): error C2065: 'nameid': undeclared identifier case MC_VENDING: skill_vending(sd, nameid); break;
  15. 7> ------ Compilation started: Project: login-server, Configuration: Debug Win32 ------ 8> ------ Compilation started: Project: char-server, Configuration: Debug Win32 ------ 9> ------ Compilation started: Project: map-server, Configuration: Debug Win32 ------ 8> char.cpp 7> account.cpp 9> achievement.cpp 9> atcommand.cpp 9> battle.cpp 9> battleground.cpp 9> buyingstore.cpp 9> cashshop.cpp 7> ipban.cpp 7> login.cpp 8> char_clif.cpp 7> loginchrif.cpp 7> loginclif.cpp 9> channel.cpp 8> char_cnslif.cpp 9> D: \ Ragnarok - Emulators \ rAthena \ src \ custom \ battle_config_init.inc (22,62): error C2065: 'MAX_ITEMID': undeclared identifier (compiling battle.cpp source file) 9> D: \ Ragnarok - Emulators \ rAthena \ src \ custom \ battle_config_init.inc (23,62): error C2065: 'MAX_ITEMID': undeclared identifier (compiling battle.cpp source file) 7> logincnslif.cpp 9> chat.cpp 9> chrif.cpp 9> clan.cpp 8> char_logif.cpp 7> loginlog.cpp 9> clif.cpp 7> Generating Code ... 8> char_mapif.cpp 9> date.cpp 9> duel.cpp 9> elemental.cpp 8> inter.cpp 9> guild.cpp 9> homunculus.cpp 9> instance.cpp 9> D: \ Ragnarok - Emulators \ rAthena \ src \ map \ clif.cpp (13057,22): error C2065: 'nameid': undeclared identifier 9> intif.cpp 8> int_achievement.cpp 9> itemdb.cpp 9> log.cpp 9> mail.cpp 8> int_auction.cpp 9> map.cpp 7> login-server.vcxproj -> D: \ Ragnarok - Emulators \ rAthena \ login-server.exe 9> mapreg.cpp 8> int_clan.cpp 9> mercenary.cpp 9> mob.cpp 9> npc.cpp 9> npc_chat.cpp 9> party.cpp 8> int_elemental.cpp 9> path.cpp 9> pc.cpp 9> pc_groups.cpp 8> int_guild.cpp 9> pet.cpp 9> quest.cpp 9> script.cpp 9> searchstore.cpp 8> int_homun.cpp 8> int_mail.cpp 9> skill.cpp 9> status.cpp 9> storage.cpp 9> trade.cpp 8> int_mercenary.cpp 9> unit.cpp 8> int_party.cpp 9> D: \ Ragnarok - Emulators \ rAthena \ src \ map \ skill.cpp (17622,32): error C2065: 'MAX_ITEMID': undeclared identifier 9> vending.cpp 8> int_pet.cpp 8> int_quest.cpp 9> Ready compilation project "map-server.vcxproj" - FAIL. 8> int_storage.cpp 8> Generating Code ... 8> char-server.vcxproj -> D: \ Ragnarok - Emulators \ rAthena \ char-server.exe ========== Compile: 8 successful, 1 failed, 0 updated, 0 ignored ==========
  16. it doesn't work, because when choosing the way to sell, Apple appears instead of the coins or item you added.
×
×
  • Create New...