Jump to content

Recommended Posts

Posted

Heya,

 

I want to put a new skill and I proceeded as follows

 

1. I made icons(utx)

2. I put the name in "skillname.dat"

3. I put the skill in "skillgrp.dat"

4. I made XML

 

and nothing happen in my passive skills...

 

 

-- xAddytzu

Posted

you should put the skill on db .

made new sql file like this:

 

--

-- Table structure for table `skill_learn`

--

CREATE TABLE IF NOT EXISTS skill_learn (

  npc_id int(11) NOT NULL default '0',

  class_id int(11) NOT NULL default '0',

  PRIMARY KEY  (npc_id,class_id)

) TYPE=MyISAM;

 

--

-- Dumping data for table `skill_learn`

--

 

INSERT INTO skill_learn VALUES

(here put the skill id,0)

(here put the skill id,1),

 

after "," put the level

Guest
This topic is now closed to further replies.
×
×
  • Create New...