Jump to content

Functor

Members
  • Posts

    351
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by Functor

  1. No. The latest rAthena is compatible with 2017-06-14bRagexeRE You need to set correct PACKETVER - 20170614
  2. @darkchase You should upload your "src" folder + EXE in archive and post a link.
  3. The most popular 2017 EXE version is 2017-06-14bRagexeRE
  4. You should upload your patched 2018-05-30bRagexeRE EXE and provide a link.
  5. Because it is a bad idea to take the latest EXE versions. Maybe the server-side code isn't adapted to it yet.
  6. @Steinhart It is script command.
  7. Open ../src/map/script.cpp and before: /// script command definitions /// for an explanation on args, see add_buildin_func struct script_function buildin_func[] = { add: BUILDIN_FUNC(addwarp) { struct npc_data *nd; const char *warpname; const char *mapname_src; const char *mapname_dst; unsigned short m_src, m_dst; int x_src, y_src, x_dst, y_dst; warpname = script_getstr(st,2); mapname_src = script_getstr(st,3); x_src = script_getnum(st,4); y_src = script_getnum(st,5); mapname_dst = script_getstr(st,6); x_dst = script_getnum(st,7); y_dst = script_getnum(st,8); if ((m_src = map_mapname2mapid(mapname_src)) < 0) { return SCRIPT_CMD_FAILURE; } if ((m_dst = mapindex_name2id(mapname_dst)) == 0) { return SCRIPT_CMD_FAILURE; } nd = npc_add_warp((char*)warpname, m_src, x_src, y_src, 2, 2, m_dst, x_dst, y_dst); if (nd == NULL) { return SCRIPT_CMD_FAILURE; } return SCRIPT_CMD_SUCCESS; } after: /// script command definitions /// for an explanation on args, see add_buildin_func struct script_function buildin_func[] = { add: BUILDIN_DEF(addwarp, "ssiisii"), P.S. @unloadnpc works fine for me.
  8. You should use this command to make GDB ignore SIGPIPE signal. Enter it before command "run". handle SIGPIPE nostop noprint
  9. BUILDIN_FUNC(flooritem) { short mx, my; struct item item_tmp; int nameid, amount, i; struct map_session_data *sd; struct item_data *item_data; if (script_rid2sd(sd) == NULL) return SCRIPT_CMD_SUCCESS; nameid = script_getnum(st, 2); if ((item_data = itemdb_search(nameid)) == NULL) return SCRIPT_CMD_SUCCESS; amount = script_getnum(st, 3); if (amount <= 0) return SCRIPT_CMD_SUCCESS; memset(&item_tmp, 0, sizeof(item_tmp)); item_tmp.nameid = nameid; item_tmp.identify = 1; for (i = 0; i < amount; i++) { map_search_freecell(&sd->bl, 0, &mx, &my, -1, -1, 0); map_addflooritem(&item_tmp, 1, sd->bl.m, mx, my, 0, 0, 0, 0, 0); } return SCRIPT_CMD_SUCCESS; }
  10. You modified "../src/config/packets.hpp". You should restore original file and recompile emulator.
  11. Have you installed security module of bank? It can cause problems.
  12. (^-_-^) Gepard Shield 3.0 (^-_-^) If you have questions, you can send me PM message or add me on Skype by using link - https://join.skype.com/invite/fGUcQ9MGPovP
  13. // 2015-05-13aRagexe 48FA1E change 6A FF 6A 00 50 8D 4D D8 E8 B5 0C BA FF to 90 90 90 90 90 90 90 90 90 90 90 90 90 48FAE1 change 6A FF 6A 00 50 8D 4D D8 E8 F2 0B BA FF to 90 90 90 90 90 90 90 90 90 90 90 90 90 6CB3B8 change 20 28 00 00 5B 20 54 6F 20 00 00 00 29 20 5D 20 3A 20 to 20 00 00 00 5B 20 54 6F 20 00 00 00 5D 20 3A 20 00 00
  14. apt-get install libmysqlclient-dev zlib1g-dev libpcre3-dev + ./configure --enable-64bit
  15. ../data/texture/effect/safeline.bmp ../data/texture/effect/freeze_ice_part.bmp STR file: ../data/texture/effect/safetywall.str
  16. Hello! I took into account messages from forum members with 10+ posts. The results: 1st place: fTakano (60$) 2nd place: Balfear (40$) 3rd place: Narutekz and sweetmole (20$ each) Winners should send me PayPal account by using PM. Thank you for taking part in Gepard Shield competition.
  17. Hello! Forum members with 10+ posts can take part in selection of the winners. You should select one winner and create post with winner's nickname. On March 23 I will announce the results. Thanks! @Balfear @BrOgBr @Narutekz @fTakano @LucasBrito @Orion @Lvy @sweetmole
  18. Hello! End date for accepting works was changed to 7 March.
  19. @Secrets Patch "Ignore /account: command line argument": wrong order of parameters for using function "exe.replace".
  20. I got images from Balfear, BrOgBr, Narutekz, fTakano, LucasBrito. I will accept works until 28 February. P.S. I will be on vacation from 9 to 25 February. So, my response can take more time.
  21. Exception happened in "cps.dll" code. It is usually caused by GRF Editor's decryption or corrupted resources in GRF. Can you show me more crash logs?
  22. @Secrets Script for patch "Enable Multiple GRFs - Embedded" has bug. Script tries to find code in "Step 2b" by using first pattern without limit. As a result - patch at wrong place. Game doesn't start. I added limit. You can add fix to the fork. Thanks. https://mega.nz/#!NUsTyLJD!YGk8Q_reiLChu5CNUJwwGAZyZgU4hbNuh25E94gkU0E
×
×
  • Create New...