Jump to content

  •  

haniko

Member Since 30 Dec 2016
Offline Last Active Jan 29 2017 12:02 AM
-----

Posts I've Made

In Topic: Craft multiple items at once using shop

29 January 2017 - 12:03 AM

Solved.


In Topic: Custom item dont show

04 January 2017 - 12:52 PM

I had a similar problem the other day. The issue was that the accessory name wasnt written properly in accname and accid. I wrote it all in capital letters and it worked.

In Topic: How to edit item scripts and add new items?

02 January 2017 - 01:45 PM

It's working! Spent the whole night trying to fix this one problem and all it took was increasing the headgear viewID. Thanks so much. :)


In Topic: How to edit item scripts and add new items?

01 January 2017 - 08:50 PM

So I should be following the section for "Defining Items clientside (For New Clients)"?

 

To my understanding, all I have to do is write a new entry for the item in iteminfo.lua and item_db.conf. Please correct me if I am wrong.

Now I am unsure where to place all the spirit files etc. since my data folder only has clientinfo.xml. Does that mean I need to specifically add the files to the GRF file? If so, which GRF file should they go into?

 

EDIT

Since the last reply, I have downloaded Tobi_Mask and tried to add this to my item list which I have succeeded in doing. I was able to create the mask and it's shown perfectly fine in the inventory, but there is a problem. Every time I attempt to equip it, my client crashes. See screenshots here

 

Code in iteminfo.lua

	[30502] = {
		unidentifiedDisplayName = "Tobi Mask",
		unidentifiedResourceName = "Tobi_Mask",
		unidentifiedDescriptionName = { 
						"An orange mask with a spiral design and one eye hole for the right eye.",
						"Defense :^777777 4^000000",
						"Equipped on :^777777 Upper, Mid, Lower^000000",
						"Weight :^777777 40^000000",
						"Applicable Job :^777777 Every Job^000000",
						"Spriter :^777777 Wolfeh^000000"
						},
		identifiedDisplayName = "Tobi Mask",
		identifiedResourceName = "Tobi_Mask",
		identifiedDescriptionName = { 
						"An orange mask with a spiral design and one eye hole for the right eye.",
						"Defense :^777777 4^000000",
						"Equipped on :^777777 Upper, Mid, Lower^000000",
						"Weight :^777777 40^000000",
						"Applicable Job :^777777 Every Job^000000",
						"Spriter :^777777 Wolfeh^000000"
						},
	slotCount = 0,
	ClassNum = 2106
 },

 

Code in item_db.conf

{
	Id: 30502
	AegisName: "Tobi_Mask"
	Name: "Tobi Mask"
	Type: 5
	Buy: 20
	Weight: 200
	Def: 5
	Loc: 769
	Refine: false
	View: 2106
	Script: <"
		bonus bMaxHP,100;
		bonus2 bResEff, Eff_Stun, 400;
		bonus2 bSubRace,RC_DemiPlayer,4;
	">
},

 

Any ideas how to fix this?

 


In Topic: Warp Portals are out of place

31 December 2016 - 11:37 PM

I am not quite familiar to how the GRF's work and which one I should be looking out for. Would be great if you could give me another hint.

 

Furthermore, it there a guide in regards to GRF's? 

 

EDIT

I downloaded the data.grf from here and replaced my existing one. This has successfully removed the snow effect in Prontera. There might have been a Christmas event in kRo that had it enabled during a patch. Since I am unable to open data.grf with GRF Editor, I have no clue for the cause.