Jump to content
Yommy

2014-10-22 Client Download

Recommended Posts

 

 

// HEADER_CZ_SHORTCUTKEYBAR_ROTATE =  0xa01,struct PACKET_CZ_SHORTCUTKEYBAR_ROTATE {  /* this+0x0 */ short PacketType  /* this+0x2 */ char Rotate}

should be a fun bit of learning for you :)

hint: look in packets.h and clif.c

at the pHotkey and how it does the clif_parse_hotkey

 

Can someone make a PR for this?

i'm not good at source edit :(

 

thank you

 

Any solution to this? I don't have a packets.h or I can't find it on my server folder.

This is what I have in my clif.c

/// Sends hotkey bar./// 02b9 { <is skill>.B <id>.L <count>.W }*27 (ZC_SHORTCUT_KEY_LIST)/// 07d9 { <is skill>.B <id>.L <count>.W }*36 (ZC_SHORTCUT_KEY_LIST_V2, PACKETVER >= 20090603)/// 07d9 { <is skill>.B <id>.L <count>.W }*38 (ZC_SHORTCUT_KEY_LIST_V2, PACKETVER >= 20090617)void clif_hotkeys_send(struct map_session_data *sd) {#ifdef HOTKEY_SAVING	const int fd = sd->fd;	int i;	int offset = 2;#if PACKETVER < 20090603	const int cmd = 0x2b9;#elif PACKETVER < 20141022	const int cmd = 0x7d9;#else	const int cmd = 0xa00;	offset = 3;#endif	if (!fd) return;	WFIFOHEAD(fd, offset + MAX_HOTKEYS * 7);	WFIFOW(fd, 0) = cmd;	for(i = 0; i < MAX_HOTKEYS; i++) {		WFIFOB(fd, offset + 0 + i * 7) = sd->status.hotkeys[i].type; // type: 0: item, 1: skill		WFIFOL(fd, offset + 1 + i * 7) = sd->status.hotkeys[i].id; // item or skill ID		WFIFOW(fd, offset + 5 + i * 7) = sd->status.hotkeys[i].lv; // item qty or skill level	}	WFIFOSET(fd, packet_len(cmd));#endif}/// Request to update a position on the hotkey bar (CZ_SHORTCUT_KEY_CHANGE)./// 02ba <index>.W <is skill>.B <id>.L <count>.Wvoid clif_parse_Hotkey(int fd, struct map_session_data *sd) {#ifdef HOTKEY_SAVING	unsigned short idx;	struct s_packet_db* info = &packet_db[sd->packet_ver][RFIFOW(fd,0)];	idx = RFIFOW(fd, info->pos[0]);	if (idx >= MAX_HOTKEYS) return;	sd->status.hotkeys[idx].type = RFIFOB(fd,info->pos[1]);	sd->status.hotkeys[idx].id = RFIFOL(fd, info->pos[2]);	sd->status.hotkeys[idx].lv = RFIFOW(fd, info->pos[3]);#endif}

Also please take in mind I changed the Character slots in Accounts so players have 5 pages of characters (15 character slots in total)

Edited by Apacman

Share this post


Link to post
Share on other sites

Is there someone who can solve this:

lua_erro.jpg

lua_erro_2.jpg

 

I'm getting these errors when I play the hexed.

 

I've tried to change this lua file many times, or even the spreditinfo path.

 

I've tried to change the diff options, or even launch a hexed with any diff patch.
 

I don't know what else could I do. 


@edit


Problem solved.

It was a problem on my jobinheritlist.lub, I've changed that and it worked!!

----------------------------------------------------------

Now i've noted that message command should display a message on top of character, but it is doing the same of a dispbottom!! Is one who knows how to solve that?

Edited by RodRich

Share this post


Link to post
Share on other sites

Hi!

im using this new client, just curious on how to use the roulette? i already enabled the feature on the conf folder.

yes. i also want to play lucky roulette and have enable it in battle.config. i use 2015-09-16 rag.exe. how to enable the lucky roulette in-game?

Share this post


Link to post
Share on other sites

 

Hi!

im using this new client, just curious on how to use the roulette? i already enabled the feature on the conf folder.

yes. i also want to play lucky roulette and have enable it in battle.config. i use 2015-09-16 rag.exe. how to enable the lucky roulette in-game?

 

kRO removed this feature shortly after adding it, so I guess there is no way to enable it on 2015 ragexe...

Share this post


Link to post
Share on other sites

Im using 2014-10-22b but my character deletion is bugged. text wont turn blue even i set the char_del_delay to 0, 30 and even 86400. Any suggestions? Btw im using rathena, i cant find any solutions in rathena forums.

 

screenrAthena011.jpg

Share this post


Link to post
Share on other sites

Hello. 

Sorry for this very noob question. I did set hercules server on my pc. Now i want to test it. I decided to install 20141022 client. 

Dastgir 's post has a link to Ragexe file.

But what will i do with that file? It does not run....

Should i download full Client? 

Then copy this ragexe to the client folder? or what....

 

i really have no idea..please help....

 

edit: The "full client" i will download should be a specific one? i mean does it have to be a "20141022 full client" or can it be "ANY" client ? :fearful::flushed:

Edited by Gomez
added new question

Share this post


Link to post
Share on other sites
On 30.08.2016 at 1:06 PM, mauiboy said:

Im using 2014-10-22b but my character deletion is bugged. text wont turn blue even i set the char_del_delay to 0, 30 and even 86400. Any suggestions? Btw im using rathena, i cant find any solutions in rathena forums.

 

screenrAthena011.jpg

Just change in your src/common/mmo.h
This ( 78 position (alt+g and whrite 78)
#if defined(PACKETVER_RE) && ( PACKETVER == 20120410 || PACKETVER == 20120418 || PACKETVER == 20141022)

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.