Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Solved] Offset for Rena Price or Heart Price?

Status
Not open for further replies.
Skilled Illusionist
Joined
Aug 5, 2008
Messages
377
Reaction score
33
I'm trying to find this offsets, I'm using IA Julia S4.6,
either Rena's price or Heart's price (Heart, not Heart of Love).
Does anyone know any of this offsets? :)
 
Last edited by a moderator:
Junior Spellweaver
Joined
Aug 27, 2008
Messages
183
Reaction score
133
Re: Offset for Rena Price or Heart Price?

Hy! Here's the offsets:

Rena: 0x005528BD+4 -> if don't work try default gold ^^
Stone : 0x005528D7+4
Default Gold: 0x0055290D+4
 
Last edited:
Upvote 0
Skilled Illusionist
Joined
Aug 5, 2008
Messages
377
Reaction score
33
Re: Offset for Rena Price or Heart Price?

Hy! Here's the offsets:

Hey!

Thanks for replying, but I don't know if they are the correct ones,
tried with the rena and default gold ones.

The rena offset makes the GS crash when I drop a rena,
the default gold makes nothing (no crash, but no change on price either).

I'm using IA Julia 4.6 which uses 1.00.90 I belive (could be wrong tho).

This is how I have it:

Code:
// This is on Configs.cpp
*(unsigned int*)GS_RENA_PRICE = GetInt(0, 2000000000, 10000000, "JewelPrices", "Rena", IAJuliaItems);

// This is on Prodef.h
#define GS_RENA_PRICE			(0x005528BD+4)

I've attached the gs I'm using, could you see if the offsets are correct? :)
 

Attachments

You must be registered for see attachments list
Last edited:
Upvote 0
Junior Spellweaver
Joined
Aug 27, 2008
Messages
183
Reaction score
133
Re: Offset for Rena Price or Heart Price?

Hey!

Thanks for replying, but I don't know if they are the correct ones,
tried with the rena and default gold ones.

The rena offset makes the GS crash when I drop a rena,
the default gold makes nothing (no crash, but no change on price either).

I'm using IA Julia 4.6 which uses 1.00.90 I belive (could be wrong tho).

This is how I have it:

Code:
// This is on Configs.cpp
*(unsigned int*)GS_RENA_PRICE = GetInt(0, 2000000000, 10000000, "JewelPrices", "Rena", IAJuliaItems);

// This is on Prodef.h
#define GS_RENA_PRICE			(0x005528BD+4)

Try this:

#define GS_RENA_PRICE (0x005528BD+3)
or
#define GS_RENA_PRICE (0x005528BD+2)

Ps: I'm learning mu codding :)



I have same gs as you
 
Upvote 0
Skilled Illusionist
Joined
Aug 5, 2008
Messages
377
Reaction score
33
Re: Offset for Rena Price or Heart Price?

Hey again!

Tried both of them (had already tried with +3),
and nothing, although it doesn't crash anymore with +3 or +2,
it doesn't change the price either.
 
Upvote 0
Status
Not open for further replies.
Back
Top