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!

[Release] Repack IA Julia 1.1.0.298 Season 4.6 ENG + Improvements + Fixes + Source

Newbie Spellweaver
Joined
Oct 13, 2014
Messages
17
Reaction score
3
re: [Release] Repack IA Julia 1.1.0.298 Season 4.6 ENG + Improvements + Fixes + Source

Setup?

I have 2 DS & 2 GS (with Castle Siege) — as default.

Yes, one machine for SQL and GS.

Any solution, gyes?!
 
Evolution Team
Joined
Apr 26, 2014
Messages
634
Reaction score
382
re: [Release] Repack IA Julia 1.1.0.298 Season 4.6 ENG + Improvements + Fixes + Source

1 Question, Monster HP Bar display in server?
 
Newbie Spellweaver
Joined
Apr 10, 2010
Messages
43
Reaction score
0
re: [Release] Repack IA Julia 1.1.0.298 Season 4.6 ENG + Improvements + Fixes + Source

apyrupa_master fix the EventItemBag17 drop full opt , but what with the other EventItemBags ? ,
 
Evolution Team
Joined
Apr 26, 2014
Messages
634
Reaction score
382
re: [Release] Repack IA Julia 1.1.0.298 Season 4.6 ENG + Improvements + Fixes + Source

No, has not bar.
ok here is fix from me and michael

Code:
#define lpGCDamageSend ((void(*)(int aIndex, int TargetIndex, int AttackDamage, int MSBFlag, int MSBDamage, int iShieldDamage)) 0x00455CB0) //HP BAR


struct PMSG_ATTACKRESULT
{
PBMSG_HEAD h; // C1:DC
BYTE NumberH; // 3
BYTE NumberL; // 4
BYTE DamageH; // 5
BYTE DamageL; // 6
BYTE DamageType; // 7
BYTE btShieldDamageH; // 8
BYTE btShieldDamageL; // 9
float Life; //A
float MaxLife; //E
float AddLife; //Inner bug hp bar fix.
};



void GCDamageSend(int aIndex, int TargetIndex, int AttackDamage, int MSBFlag, int MSBDamage, int iShieldDamage)
{
PMSG_ATTACKRESULT pResult;


PHeadSetB((LPBYTE)&pResult, 0x11, sizeof(pResult));
pResult.NumberH = SET_NUMBERH(TargetIndex);
pResult.NumberL = SET_NUMBERL(TargetIndex);
pResult.DamageH = SET_NUMBERH(AttackDamage);
pResult.DamageL = SET_NUMBERL(AttackDamage);
pResult.btShieldDamageH = SET_NUMBERH(iShieldDamage);
pResult.btShieldDamageL = SET_NUMBERL(iShieldDamage);


if ( MSBFlag != FALSE )
{
pResult.NumberH &= 0x7F;
pResult.NumberH |= 0x80;
}


pResult.DamageType = MSBDamage;




OBJECTSTRUCT * gObj = (OBJECTSTRUCT*)OBJECT_POINTER(aIndex);
OBJECTSTRUCT * gTarg = (OBJECTSTRUCT*)OBJECT_POINTER(TargetIndex);


pResult.Life = gTarg->Life;
pResult.MaxLife = gTarg->MaxLife + gTarg->AddLife;
if (gTarg->Type == OBJECT_MONSTER)
{
pResult.Life = gTarg->Life;
pResult.MaxLife = gTarg->MaxLife + gTarg->AddLife;
}


if(gTarg->Type == OBJECT_USER)
{
DataSend(TargetIndex, (LPBYTE)&pResult, pResult.h.size);
}


if(gObj->Type == OBJECT_USER )
{
DataSend(aIndex, (LPBYTE)&pResult, pResult.h.size);
}


lpGCDamageSend(aIndex, TargetIndex, AttackDamage, MSBFlag, MSBDamage, iShieldDamage);
}
 

wFX

Newbie Spellweaver
Joined
Sep 8, 2014
Messages
37
Reaction score
0
re: [Release] Repack IA Julia 1.1.0.298 Season 4.6 ENG + Improvements + Fixes + Source

No, has not bar.

plz double check the odbc.reg file, can you post the content to we verify?

I use sql 2008(x64) too, i use the default odbc64.reg from ia julia/database folder.

If you run the query manually in sql manag studio you got the same error?

Code:
UPDATE T_PetItem_Info SET Pet_Level=21, Pet_Exp=31328200 WHERE ItemSerial=4294967196

I'll add you in skype to try to solve this issue
 
Evolution Team
Joined
Apr 26, 2014
Messages
634
Reaction score
382
re: [Release] Repack IA Julia 1.1.0.298 Season 4.6 ENG + Improvements + Fixes + Source

someone has callchar system balanced .ini to share?
 
Newbie Spellweaver
Joined
Oct 13, 2014
Messages
17
Reaction score
3
re: [Release] Repack IA Julia 1.1.0.298 Season 4.6 ENG + Improvements + Fixes + Source

plz double check the odbc.reg file, can you post the content to we verify?

I use sql 2008(x64) too, i use the default odbc64.reg from ia julia/database folder.

If you run the query manually in sql manag studio you got the same error?

Code:
UPDATE T_PetItem_Info SET Pet_Level=21, Pet_Exp=31328200 WHERE ItemSerial=4294967196

I'll add you in skype to try to solve this issue

No, ofc i haven't this error when i playing sql in Manager.

Problem is solved when i restart my DataServer, i don't know why.

Thank you!
 
Newbie Spellweaver
Joined
Sep 23, 2014
Messages
7
Reaction score
0
re: [Release] Repack IA Julia 1.1.0.298 Season 4.6 ENG + Improvements + Fixes + Source

Hello everyone!

I'm trying to configure GS_CS, when I move to Crywolf, the mobs drop too much zen. The zen configuration in Commonserver.cfg for GS seems ok (I've read something about fixing zen config in CommonserverCS.cfg, but I couldn't find this file). It looks like the problem is only in GS_CS.

Any way to fix it? Thanks!
 
Evolution Team
Joined
Apr 26, 2014
Messages
634
Reaction score
382
re: [Release] Repack IA Julia 1.1.0.298 Season 4.6 ENG + Improvements + Fixes + Source

someone has client+jewels link ?
 
Evolution Team
Joined
Apr 26, 2014
Messages
634
Reaction score
382
re: [Release] Repack IA Julia 1.1.0.298 Season 4.6 ENG + Improvements + Fixes + Source

just need 1.03P+custom jewels support if someone can help it on server side is already added need client models + .dll
 
Joined
Nov 4, 2012
Messages
928
Reaction score
545
re: [Release] Repack IA Julia 1.1.0.298 Season 4.6 ENG + Improvements + Fixes + Source

Oh i want to share my version of ia Julia and their configs, if anyone is interested see github.com/SmileYzn/IA-Julia-Repack.

I will update the project sources every day..
 
Joined
Nov 4, 2012
Messages
928
Reaction score
545
re: [Release] Repack IA Julia 1.1.0.298 Season 4.6 ENG + Improvements + Fixes + Source

work cliente 1.03K JPN?

First, thanks for Th3AnG3L for awesome GS HPBAR.
Second, thanks for someone than created awesome client.

Ps, HPBar, minimap, jewels are working for this GS..

UPDATE:

This is my changelog for GS:

Code:
# 1.1.0.325 # - Fixed Helpers zens required
# 1.1.0.324 # - Fixed money reduce for Reset system
# 1.1.0.323 # - Removed commands work from whisper chat
# 1.1.0.322 # - Added zen command and their configs
# 1.1.0.321 # - Added Max Usage per account or character for helpers
# 1.1.0.320 # - Added Max Usage for Helpers
# 1.1.0.319 # - Added ChatCommands.txt for change commands
# 1.1.0.318 # - Added files for itens in helpers
# 1.1.0.317 # - Added readme.md in project
# 1.1.0.316 # - Fixed CashShop excelent itens
# 1.1.0.315 # - Fixed Golden Rabbit invasion
# 1.1.0.314 # - Removed Localization
# 1.1.0.313 # - Removed  Extra files in Lang folder
# 1.1.0.312 # - Move the char to correct gate when reset
# 1.1.0.312 # - Fixed Helpers NPCs: Luke, Ellen, Leo
# 1.1.0.311 # - Added NPC for Reset, See ResetSystem.ini
# 1.1.0.310 # - Optmized configs systems
# 1.1.0.309 # - Fixed CSPoints query error at server start
# 1.1.0.308 # - Fixed some lost configs
# 1.1.0.307 # - All command strings moved
# 1.1.0.306 # - Removed Relogin in ResetSystem
# 1.1.0.305 # - Added Dual Protocol (JPN <> ENG) [BETA]
# 1.1.0.304 # - Added /evo command (And their configs)
# 1.1.0.303 # - Removed ~Core command (Can crash GS)
# 1.1.0.303 # - Added HP Bar (GS)
# 1.1.0.302 # - Moved all Terrains to Data/Terrains Folder
# 1.1.0.301 # - Changed /add strings to: /str, /agi, /vit, /ene, /cmd
# 1.1.0.300 # - Added Effect to /add System (AddPointEffect = 1)
# 1.1.0.299 # - Removed some dead code
 
Last edited:
Skilled Illusionist
Joined
Jun 7, 2014
Messages
315
Reaction score
18
re: [Release] Repack IA Julia 1.1.0.298 Season 4.6 ENG + Improvements + Fixes + Source

First, thanks for Th3AnG3L for awesome GS HPBAR.
Second, thanks for someone than created awesome client.

Ps, HPBar, minimap, jewels are working for this GS..

UPDATE:

This is my changelog for GS:

Code:
# 1.1.0.325 # - Fixed Helpers zens required
# 1.1.0.324 # - Fixed money reduce for Reset system
# 1.1.0.323 # - Removed commands work from whisper chat
# 1.1.0.322 # - Added zen command and their configs
# 1.1.0.321 # - Added Max Usage per account or character for helpers
# 1.1.0.320 # - Added Max Usage for Helpers
# 1.1.0.319 # - Added ChatCommands.txt for change commands
# 1.1.0.318 # - Added files for itens in helpers
# 1.1.0.317 # - Added readme.md in project
# 1.1.0.316 # - Fixed CashShop excelent itens
# 1.1.0.315 # - Fixed Golden Rabbit invasion
# 1.1.0.314 # - Removed Localization
# 1.1.0.313 # - Removed  Extra files in Lang folder
# 1.1.0.312 # - Move the char to correct gate when reset
# 1.1.0.312 # - Fixed Helpers NPCs: Luke, Ellen, Leo
# 1.1.0.311 # - Added NPC for Reset, See ResetSystem.ini
# 1.1.0.310 # - Optmized configs systems
# 1.1.0.309 # - Fixed CSPoints query error at server start
# 1.1.0.308 # - Fixed some lost configs
# 1.1.0.307 # - All command strings moved
# 1.1.0.306 # - Removed Relogin in ResetSystem
# 1.1.0.305 # - Added Dual Protocol (JPN <> ENG) [BETA]
# 1.1.0.304 # - Added /evo command (And their configs)
# 1.1.0.303 # - Removed ~Core command (Can crash GS)
# 1.1.0.303 # - Added HP Bar (GS)
# 1.1.0.302 # - Moved all Terrains to Data/Terrains Folder
# 1.1.0.301 # - Changed /add strings to: /str, /agi, /vit, /ene, /cmd
# 1.1.0.300 # - Added Effect to /add System (AddPointEffect = 1)
# 1.1.0.299 # - Removed some dead code
first it excellent that someone work on this files :)
i checked... and /sim is make the GS Fail <>
 
Joined
Nov 4, 2012
Messages
928
Reaction score
545
re: [Release] Repack IA Julia 1.1.0.298 Season 4.6 ENG + Improvements + Fixes + Source

Thanks for tip, i will test when i get home.

Ps. So far i made this fixes:

Code:
# 1.0.0.330 # - Fixed GS / CS Crash when use /sim and /no commands when NPC is not in use
# 1.1.0.329 # - Fixed Santa Claus attack event
# 1.1.0.328 # - Added /Clear command (To clear inventory) and their configs
# 1.1.0.327 # - Fixed /post command delay Removed post seconds count from MainTick() (OMFG!!!)
# 1.1.0.326 # - Fixed Zen command
# 1.1.0.325 # - Fixed Helpers zens required
# 1.1.0.324 # - Fixed money reduce for Reset system
# 1.1.0.323 # - Removed commands work from whisper chat
# 1.1.0.322 # - Added zen command and their configs
# 1.1.0.321 # - Added Max Usage per account or character for helpers
# 1.1.0.320 # - Added Max Usage for Helpers
# 1.1.0.319 # - Added ChatCommands.txt for change commands
# 1.1.0.318 # - Added files for itens in helpers
# 1.1.0.317 # - Added readme.md in project
# 1.1.0.316 # - Fixed CashShop excelent itens
# 1.1.0.315 # - Fixed Golden Rabbit invasion
# 1.1.0.314 # - Removed Localization
# 1.1.0.313 # - Removed  Extra files in Lang folder
# 1.1.0.312 # - Move the char to correct gate when reset
# 1.1.0.312 # - Fixed Helpers NPCs: Luke, Ellen, Leo
# 1.1.0.311 # - Added NPC for Reset, See ResetSystem.ini
# 1.1.0.310 # - Optmized configs systems
# 1.1.0.309 # - Fixed CSPoints query error at server start
# 1.1.0.308 # - Fixed some lost configs
# 1.1.0.307 # - All command strings moved
# 1.1.0.306 # - Removed Relogin in ResetSystem
# 1.1.0.305 # - Added Dual Protocol (JPN <> ENG) [BETA]
# 1.1.0.304 # - Added /evo command (And their configs)
# 1.1.0.303 # - Removed ~Core command (Can crash GS)
# 1.1.0.303 # - Added HP Bar (GS)
# 1.1.0.302 # - Moved all Terrains to Data/Terrains Folder
# 1.1.0.301 # - Changed /add strings to: /str, /agi, /vit, /ene, /cmd
# 1.1.0.300 # - Added Effect to /add System (AddPointEffect = 1)
# 1.1.0.299 # - Removed some dead code

Edit Fixed! Uploaded source to github :D

Thanks again L1ron
 
Last edited:
Skilled Illusionist
Joined
Jun 7, 2014
Messages
315
Reaction score
18
re: [Release] Repack IA Julia 1.1.0.298 Season 4.6 ENG + Improvements + Fixes + Source

Thanks for tip, i will test when i get home.

Ps. So far i made this fixes:

Code:
# 1.0.0.330 # - Fixed GS / CS Crash when use /sim and /no commands when NPC is not in use
# 1.1.0.329 # - Fixed Santa Claus attack event
# 1.1.0.328 # - Added /Clear command (To clear inventory) and their configs
# 1.1.0.327 # - Fixed /post command delay Removed post seconds count from MainTick() (OMFG!!!)
# 1.1.0.326 # - Fixed Zen command
# 1.1.0.325 # - Fixed Helpers zens required
# 1.1.0.324 # - Fixed money reduce for Reset system
# 1.1.0.323 # - Removed commands work from whisper chat
# 1.1.0.322 # - Added zen command and their configs
# 1.1.0.321 # - Added Max Usage per account or character for helpers
# 1.1.0.320 # - Added Max Usage for Helpers
# 1.1.0.319 # - Added ChatCommands.txt for change commands
# 1.1.0.318 # - Added files for itens in helpers
# 1.1.0.317 # - Added readme.md in project
# 1.1.0.316 # - Fixed CashShop excelent itens
# 1.1.0.315 # - Fixed Golden Rabbit invasion
# 1.1.0.314 # - Removed Localization
# 1.1.0.313 # - Removed  Extra files in Lang folder
# 1.1.0.312 # - Move the char to correct gate when reset
# 1.1.0.312 # - Fixed Helpers NPCs: Luke, Ellen, Leo
# 1.1.0.311 # - Added NPC for Reset, See ResetSystem.ini
# 1.1.0.310 # - Optmized configs systems
# 1.1.0.309 # - Fixed CSPoints query error at server start
# 1.1.0.308 # - Fixed some lost configs
# 1.1.0.307 # - All command strings moved
# 1.1.0.306 # - Removed Relogin in ResetSystem
# 1.1.0.305 # - Added Dual Protocol (JPN <> ENG) [BETA]
# 1.1.0.304 # - Added /evo command (And their configs)
# 1.1.0.303 # - Removed ~Core command (Can crash GS)
# 1.1.0.303 # - Added HP Bar (GS)
# 1.1.0.302 # - Moved all Terrains to Data/Terrains Folder
# 1.1.0.301 # - Changed /add strings to: /str, /agi, /vit, /ene, /cmd
# 1.1.0.300 # - Added Effect to /add System (AddPointEffect = 1)
# 1.1.0.299 # - Removed some dead code

Edit Fixed! Uploaded source to github :D

Thanks again L1ron
can u tell me where do u fix it ?
 
Joined
Nov 4, 2012
Messages
928
Reaction score
545
re: [Release] Repack IA Julia 1.1.0.298 Season 4.6 ENG + Improvements + Fixes + Source

You can read? LOL

the version posted in this topic is 1.1.0.298, the changelog i have posted is in 1.1.0.330
 
Skilled Illusionist
Joined
Jun 7, 2014
Messages
315
Reaction score
18
re: [Release] Repack IA Julia 1.1.0.298 Season 4.6 ENG + Improvements + Fixes + Source

You can read? LOL

the version posted in this topic is 1.1.0.298, the changelog i have posted is in 1.1.0.330
where i fix it ; i work with source and i dont know where rapir it
 
Last edited:
Back
Top