Jump to content
zackdreaver

Guide setting up 2013+ Client for Hercules

Recommended Posts

@@Mhalicot

Was lucky to fix other stuffs but this is my current problem, I am having errors when equipping the custom headgear item. but I already properly defined it on:

 

itemInfo.lua and itemInfo.lub

 

[29000] = {
unidentifiedDisplayName = "Red_Valkyrie_Helm",
unidentifiedResourceName = "Red_Valkyrie_Helm",
unidentifiedDescriptionName = {
"Unknown Item, can be identified by ^6A5ACDMagnifier^000000."
},
identifiedDisplayName = "Red Valkyrie Helm",
identifiedResourceName = "Red_Valkyrie_Helm",
identifiedDescriptionName = {
"An ornate, winged helmet worn by the warrior maidens that serve Odin.",
"STR +10",
"Class: ^777777Headgear^000000",
"Defense: ^77777710^000000",
"Location: ^777777Upper^000000",
"Weight: ^777777100^000000",
"Jobs: ^777777All Transcendent Classes except Novice^000000"
},
slotCount = 1,
ClassNum = 0
},
 
--------------------------------------------------------------
idnum2itemresnametable.txt
29000#Red_Valkyrie_Helm#
 
idnum2destable.txt
29000#
Red Valkyrie Helm
Strenght + 10
Class :^777777 Headgear^000000
Defense :^777777 5^000000
Equipped on :^777777 Upper^000000
Weight :^777777 10^000000
Applicable Job :^777777 Every Job^000000
#
 
idnum2itemdisplaynametable.txt
29000#Red_Valkyrie_Helm#
 
itemslotcounttable.txt
29000#1#
 
accessoryid.lub and accessoryid.lua
ACCESSORY_Red_Valkyrie_Helm = 2167,
 
accname.lua and accname.lub
[ACCESSORY_IDs.ACCESSORY_Red_Valkyrie_Helm] = "Red_Valkyrie_Helm",
 
---------------------------------------------------------------
 

 

item_db2.conf

{
Id: 29000
AegisName: "Red_Valkyrie_Helm"
Name: "Red Valkyrie Helm"
Type: 5
Buy: 500000
Sell: 100000
Def: 10
Slots: 1
Loc: 256
View: 2167
Script: <"
bonus bStr,10;
">
},
 
I always try to make it to 216 (baseball cap) or delete it in db in order to get into the game. 
Edited by wengbenedict93

Share this post


Link to post
Share on other sites

@@Mhalicot

Was lucky to fix other stuffs but this is my current problem, I am having errors when equipping the custom headgear item. but I already properly defined it on:

 

itemInfo.lua and itemInfo.lub

 

[29000] = {

unidentifiedDisplayName = "Red_Valkyrie_Helm",

unidentifiedResourceName = "Red_Valkyrie_Helm",

unidentifiedDescriptionName = {

"Unknown Item, can be identified by ^6A5ACDMagnifier^000000."

},

identifiedDisplayName = "Red Valkyrie Helm",

identifiedResourceName = "Red_Valkyrie_Helm",

identifiedDescriptionName = {

"An ornate, winged helmet worn by the warrior maidens that serve Odin.",

"STR +10",

"Class: ^777777Headgear^000000",

"Defense: ^77777710^000000",

"Location: ^777777Upper^000000",

"Weight: ^777777100^000000",

"Jobs: ^777777All Transcendent Classes except Novice^000000"

},

slotCount = 1,

ClassNum = 0

},

 

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

idnum2itemresnametable.txt

29000#Red_Valkyrie_Helm#

 

idnum2destable.txt

 

29000#

Red Valkyrie Helm

Strenght + 10

Class :^777777 Headgear^000000

Defense :^777777 5^000000

Equipped on :^777777 Upper^000000

Weight :^777777 10^000000

Applicable Job :^777777 Every Job^000000

#

 

idnum2itemdisplaynametable.txt

29000#Red_Valkyrie_Helm#

 

itemslotcounttable.txt

29000#1#

 

accessoryid.lub and accessoryid.lua

ACCESSORY_Red_Valkyrie_Helm = 2167,

 

accname.lua and accname.lub

[ACCESSORY_IDs.ACCESSORY_Red_Valkyrie_Helm] = "Red_Valkyrie_Helm",

 

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

 

 

 

item_db2.conf

{

Id: 29000

AegisName: "Red_Valkyrie_Helm"

Name: "Red Valkyrie Helm"

Type: 5

Buy: 500000

Sell: 100000

Def: 10

Slots: 1

Loc: 256

View: 2167

Script: <"

bonus bStr,10;

">

},

 

I always try to make it to 216 (baseball cap) or delete it in db in order to get into the game.

what client version you use?

 

Please note that: 

 

Defining Item clientside (Renewal Clients <= 2012-04-10a & Main Clients <= 2012-07-10a)

- using .txt

 

is different with

 

Defining Items clientside (For New Clients)

- Using iteminfo.lua/lub

Share this post


Link to post
Share on other sites

Hello @@Mhalicot I am using 2013-08-07 client

 

File name is Red_Valkyrie_Helm.spr and Red_Valkyrie_Helm.act

 

This is the inside of the itemInfo.lua and itemInfo.lub

 

[29000] = {
unidentifiedDisplayName = "Red Valkyrie Helm",
unidentifiedResourceName = "Red_Valkyrie_Helm",
unidentifiedDescriptionName = {
"Unknown Item, can be identified by ^6A5ACDMagnifier^000000."
},
identifiedDisplayName = "Red Valkyrie Helm",
identifiedResourceName = "Red_Valkyrie_Helm",
identifiedDescriptionName = {
"An ornate, winged helmet worn by the warrior maidens that serve Odin.",
"STR +10",
"Class: ^777777Headgear^000000",
"Defense: ^77777710^000000",
"Location: ^777777Upper^000000",
"Weight: ^777777100^000000",
"Jobs: ^777777All Transcendent Classes except Novice^000000"
},
slotCount = 1,
ClassNum = 2167
},

 

 

Confused with classnum, do I define it as number 2167? <View ID - yes the same one that was there item_db> 

 

item_db2.conf

 

{
Id: 29000
AegisName: "Red_Valkyrie_Helm"
Name: "Red Valkyrie Helm"
Type: 5
Buy: 500000
Sell: 100000
Def: 10
Slots: 1
Loc: 256
View: 2167
Script: <"
bonus bStr,10;
">
},
 
This is the accessory.lub and lua
ACCESSORY_Red_Valkyrie_Helm = 2167,
 
and accname
[ACCESSORY_IDs.ACCESSORY_Red_Valkyrie_Helm] = "Red_Valkyrie_Helm",
Edited by wengbenedict93

Share this post


Link to post
Share on other sites

Hello, i have problem regarding entering @go 0 or is there any problem with the client?

Image:

post-386-0-45568800-1432318933_thumb.png

 

Pleaset let me know if what is missing on it, greatly appreciated!

Thank You!

Edited by Vlync

Share this post


Link to post
Share on other sites

Hello, i have problem regarding entering @go 0 or is there any problem with the client?

Image:

attachicon.gifUntitled.png

 

Pleaset let me know if what is missing on it, greatly appreciated!

Thank You!

http://herc.ws/board/topic/8451-what-do-you-think-about-the-new-prontera/page-2#entry51193

Share this post


Link to post
Share on other sites

hi, can you help me, I change my data folder from rathena to data folder from the link in the first page, I follow every step but when I try to login my account, I recieved this error before going to character select. I notice that there is no sprite in the data folder. I follow every step in the first page. Working find when using data folder with sprite, but why my client is not getting the sprite from data.grf?

 

post-9584-0-29818200-1432368809_thumb.png

Share this post


Link to post
Share on other sites

@@avahdon

check my signature...

there is link for all officials sprite... minus from KRO ofc



edit:

I remove all sprites from that project, because i want that project focus on translating client,

not collecting sprite etc.

Share this post


Link to post
Share on other sites

@@avahdon

check my signature...

there is link for all officials sprite... minus from KRO ofc

edit:

I remove all sprites from that project, because i want that project focus on translating client,

not collecting sprite etc.

 

hi, i combine the two, but still have the same error, cant find sprite? how to fix it? and how can i convert ascii to korean or korean to ascii? thanks

Edited by avahdon

Share this post


Link to post
Share on other sites

@@zackdreaver yeah i move now to hercules emulator and changing my client now.

I'm using 2013-08-07aRagexe i guess which client is pretty good and stable. and now, my problem is why i got error when clicking the ,exe

 

This are my Diff patches (50 patches apply)

3 Chat Flood Remove Limit

6 Force Send Client Hash Packet (Experimental)
8 Custom Window Title
9 Disable 1rag1 type parameters (Recommended)
10 Disable 4 Letter Character Name Limit
11 Disable 4 Letter User Name Limit
12 Disable 4 Letter Password Limit
13 Disable Ragexe Filename Check (Recommended)
14 Disable Hallucination Wavy Screen (Recommended)
15 Disable HShield (Recommended)
18 Skip Service Selection Screen
19 Enable Title Bar Menu
24 Fix Camera Angles (Recommended)
31 Increase Zoom Out 75%
33 Always Call SelectKoreaClientInfo() (Recommended)
35 Read Data Folder First
36 Read msgstringtable.txt (Recommended)
37 Read questid2display.txt (Recommended)
38 Remove Gravity Ads (Recommended)
39 Remove Gravity Logo (Recommended)
40 Restore Login Window (Recommended)
41 Disable Nagle Algorithm (Recommended)
42 Skip Resurrection Buttons
44 Translate Client (Recommended)
45 Use Custom Aura Sprites
46 Use Normal Guild Brackets
47 Use Ragnarok Icon
48 Use Plain Text Descriptions (Recommended)
49 Enable Multiple GRFs (Recommended)
53 Use Ascii on All Langtypes (Recommended)
54 Chat Color - GM
61 Disable Packet Encryption (Recommended)
64 @ Bug Fix (Recommended)
65 Load Custom lua file instead of iteminfo.lub
68 Enable 64k Hairstyle
201 Enable Custom Homunculus
71 Ignore Missing File Error
202 Enable Custom Jobs
72 Ignore Missing Palette Error
203 Enable Custom Shields
73 Remove Hourly Announce (Recommended)
74 Increase Screenshot Quality
205 Enable Monster tables
77 Enable Custom 3D Bones
209 Enable Mail Box for All Langtypes
84 Remove Serial Display (Recommended)
86 Only First Login Background
88 Allow space in guild name
90 Enable DNS Support (Recommended)
97 Cancel to Login Window (Recommended)

 

And of course, i use the ROClientSideTranslation for my pre-renewal server.

please let me know if something did i miss or what because i'm having hard time with client side. :(

 

THANK YOU!

Edited by Vlync

Share this post


Link to post
Share on other sites

If you don't know what you are doing, just use the basic patch, disable the following:

 

Enable Custom 3D Bones

Enable Custom Shields

Ignore Missing File Error

Enable Custom Homunculus

Chat Color - GM

Use Custom Aura Sprites

Skip Resurrection Buttons

Force Send Client Hash Packet

 

 

Dont forget to update NEMO, there are critical update in past week, include today

Share this post


Link to post
Share on other sites

Followed your guide and it went well until the final step [7].

It always gives me "Failed to retrieve patch.txt" message.

Share this post


Link to post
Share on other sites

 Hello guys, when im trying to patch my client i got this error

on Load Custom Quest Lua/Lub Files, following this guide ..

 

Help please!

 

a594006f982bb169cd849064e436ffb1o.png

Share this post


Link to post
Share on other sites

Excuse me I have the problem with client 

 

I got this error 

 

ServiceType Error 

 

and 

 

Rejected form the server

 

and disconnect from the server :(

 

YBvBA5O.jpg

 

 

tXzEyPQ.jpg

 

Btw, I have a little confuse in mmo.h  which date should I use the the client date or ragexe date ?

 

Thanks :)

 

BnOdPH2.jpg

Edited by Akaneharuka

Share this post


Link to post
Share on other sites

@@Akaneharuka

- servicetype? maybe you made mistype on clientinfo.xml

 

- follow ragexe date, i already listed all the correct date of every clients in guide.

 

Sorry this problem already fixed 2 days ago  XD  

 

I misstype the packetver  :/

Edited by Akaneharuka

Share this post


Link to post
Share on other sites

Good day sir, can you me about my problem ? every time I log-in my account the login-server.bat says "Closed connection from 127.0.0.1". Then when i create my character it always rejected from server. Can you help me please. :(

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.