2013 Ragexe Area

yeah it's not related to this topic. That is usually fixed via source or clientside (texture edits)

 
Tested on 3ceam, and has no image error and crash.

The same occurs in hercules and rathena.

 
Last edited by a moderator:
Anyway...

Does anyone can tell if with the new version of lub files, they have a problem with the skill tree ? (new skill are in 2nd job tree) and some news skills are at the same location as older skills.

I tried with 2012 exe, so can anyone look if it's the same things with the new exe ?

749303screenCloudOnline000.jpg


 
Last edited by a moderator:
cant test since my campus wifi is slow but the skills appeared in the 3rd tab

 
Ok so it's older exe problem, no reason to worry about this for new client in that case
default_tongue.png


 
anyone find out why vending(alt+W) isn't possible? Is there something new KRO added, or is it packet/src related?

EDIT:

Yommy mentioned to me that it was strange as well. Usually the item button has text that says open cart using alt+W, but when you hover on it on 2013-03-20 client there is no text there.

 
Last edited by a moderator:
It would be a pleasure to try to fix that but my server use md5 password. Without the enforce old login system, it's not possible to log in >.<

Password NULL has his md5, can't believe it >.>

 
anyone tried to use the client in IDA? It is trying to pick up hackshield in IDA i think which is weird.

I saw this error =>

Debugged application message: CHackShieldMgr::Stop() failed

Debugged application message: CHackShieldMgr::UnInit() failed

 
When using the Four Spirit Analysis skill get crash due to lack of customer packages 2013.

Code:
Received unsupported packet (packet 0x868, 12 bytes received)
 
thx :3

EDIT:

Regarding cart, it does show the [Alt+W] on the char menu. So that seems right.

And the korean text that gets spit out translate to:

이지역은 카트이용이 금지 되어 있습니다

This region are prohibited from using the cart.
So is there a mapflag we're missing O.o?

 
Last edited by a moderator:
It seems it's a new mapflag °°

Never saw that before.

But it's great to notice that. Just have to seach out how to find the mapflag and how add it
default_biggrin.png


 
Last edited by a moderator:
is it a mapflag or they added a new cell type that blocks vending stuff?

 
im not too sure how mapflag/celltype work. Is that defined in thr client?

 
both server and client
default_ohmy.png
i thought of something, perhaps for vendings to be allowed the client now requires a specific map type to be sent by the server?

Code:
/// Set the map type (ZC_NOTIFY_MAPPROPERTY2)./// 01d6 <type>.Wvoid clif_map_type(struct map_session_data* sd, enum map_type type){	int fd;	nullpo_retv(sd);	fd=sd->fd;	WFIFOHEAD(fd,packet_len(0x1D6));	WFIFOW(fd,0)=0x1D6;	WFIFOW(fd,2)=type;	WFIFOSET(fd,packet_len(0x1D6));}
Code:
enum map_type { // clif_map_type	MAPTYPE_VILLAGE              = 0,	MAPTYPE_VILLAGE_IN           = 1,	MAPTYPE_FIELD                = 2,	MAPTYPE_DUNGEON              = 3,	MAPTYPE_ARENA                = 4,	MAPTYPE_PENALTY_FREEPKZONE   = 5,	MAPTYPE_NOPENALTY_FREEPKZONE = 6,	MAPTYPE_EVENT_GUILDWAR       = 7,	MAPTYPE_AGIT                 = 8,	MAPTYPE_DUNGEON2             = 9,	MAPTYPE_DUNGEON3             = 10,	MAPTYPE_PKSERVER             = 11,	MAPTYPE_PVPSERVER            = 12,	MAPTYPE_DENYSKILL            = 13,	MAPTYPE_TURBOTRACK           = 14,	MAPTYPE_JAIL                 = 15,	MAPTYPE_MONSTERTRACK         = 16,	MAPTYPE_PORINGBATTLE         = 17,	MAPTYPE_AGIT_SIEGEV15        = 18,	MAPTYPE_BATTLEFIELD          = 19,	MAPTYPE_PVP_TOURNAMENT       = 20,	//Map types 21 - 24 not used.	MAPTYPE_SIEGE_LOWLEVEL       = 25,	//Map types 26 - 28 remains opens for future types.	MAPTYPE_UNUSED               = 29,};
 
I don't think it's a mapflag for "vending" -> there is alrdy a celltype for that

I think it's a mapflag or a celltype to have a cart like having a peco ect...

 
I don't think it's a mapflag for "vending" -> there is alrdy a celltype for that

I think it's a mapflag or a celltype to have a cart like having a peco ect...
So you think the client no longer recognises these stuff as "hi you have a cart and this is its data"?
Code:
	if(pc_iscarton(sd)) {		clif_cartlist(sd);		clif_updatestatus(sd,SP_CARTINFO);	}
 
No, for me it recognize that. That's why it check if it's allowed to have it with a mapflag or celltype.

 
Back
Top