Need a bit of help with skills

09/06/2011 07:58 DEvolver#1
Well i tried "googling" a solution but couldn't find anything , i was wondering if anyone could help me figure out how to give other classes , other classes skills xD i.e. Fighter have Ranger Skill Agility or Mage have Priest Ability Prayer. also i don't mean just a single player i mean so that all players will have these skills.
09/06/2011 08:36 viper4513#2
edit your skill.sdata and skill table in database, enabling the other class to use that certain skill.

using your example of Fighter using a Ranger skill

in the sdata, tick insert a " 1 " next to "agility lv1" under the "fighter" value. Save and import that into your data.sah, then either use the automatic sql query that castors tool generates, or edit your database yourself.
Open up your SQL and either use a query, or open your skills table

Code:
USE PS_GameDefs
SELECT * FROM Skills
WHERE Patrolrogue = 1
Find the skill "agility lv1" and change the " 0 " under "fighter" to a " 1 " Should be as simple as that.