-
Posts
352 -
Joined
-
Last visited
-
Days Won
26
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Posts posted by Functor
-
-
8 hours ago, babysmile said:
i just trying to get new ragexeRE because im using 2018-05-30bRagexeRE thats have some error when i trying back to login screen it's crash like this
any suggestion master ?9You should upload your patched 2018-05-30bRagexeRE EXE and provide a link.
-
1
-
-
Because it is a bad idea to take the latest EXE versions. Maybe the server-side code isn't adapted to it yet.
-
It is script command.
-
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.
-
1
-
-
You should use this command to make GDB ignore SIGPIPE signal. Enter it before command "run".
handle SIGPIPE nostop noprint
-
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; }
-
On 9/5/2018 at 6:53 PM, darkchase said:
I did not make any changes in SRC
You modified "../src/config/packets.hpp". You should restore original file and recompile emulator.
-
Have you installed security module of bank? It can cause problems.
-
// 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-
2
-
-
apt-get install libmysqlclient-dev zlib1g-dev libpcre3-dev
+
./configure --enable-64bit
-
Thanks. I will do it.
-
1
-
1
-
-
-
../data/texture/effect/safeline.bmp
../data/texture/effect/freeze_ice_part.bmpSTR file: ../data/texture/effect/safetywall.str
-
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.
-
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!
-
1
-
1
-
-
Hello! End date for accepting works was changed to 7 March.
-
12 hours ago, nasagnilac said:
I use this to your latest upload in 2015-11-04Ragexe and when I start the client nothing happens.
Patch "Ignore /account: command line argument": wrong order of parameters for using function "exe.replace".
-
1
-
-
Hello! Read PM.
-
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.
-
2
-
-
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?
-
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
-
Hello! You should download file "connect_log.mix", copy to game folder and try to connect.
https://mega.nz/#!lI90TTxI!6l2xp20o9gdDrpsKBohMaR46PZqMtHosYSWLlK5kO88
Module will create file "connect_log.txt" with IP and port which game use for connection.
You should compare it with IP and port of your login server.
If everything is OK, you should check possibility to connect to your server here: http://ping.eu/port-chk/
-
Hello! Do you use GRF Editor for encryption of GRFs?
-
Best and Stable 2017 Clients.
in Client-side Support
Posted · Edited by Functor
The most popular 2017 EXE version is 2017-06-14bRagexeRE