Hello. Can anyone teach me how I can create mounts so you can be Level 1 and have an 60% mount, and lvl 30 to have an 100% mount.
If anyone can tell me?
Got Navicat to edit DB.
Ascent.
+rep
Hello. Can anyone teach me how I can create mounts so you can be Level 1 and have an 60% mount, and lvl 30 to have an 100% mount.
If anyone can tell me?
Got Navicat to edit DB.
Ascent.
+rep
Last edited by 2dgreengiant; 06-09-2008 at 01:44 PM.
Remakes the level to 1 of the items that required skill 762 (riding) and with skillrank 75 (60% mounts) and setting the level to 30 of mounts that has skill 762 (rding) with skillrank 150 (100%)Code:UPDATE items SET requiredlevel = '1' WHERE Requiredskill = '762' AND RequiredSkillRank = '75'; UPDATE items SET requiredlevel = '30' WHERE Requiredskill = '762' AND RequiredSkillRank = '150';
Request threads are not allowed.
That was more of a question than a request
OP: Don't forget to mod the required level for riding in the trainers table.
If you want to disable it completely, and let players ride just with their level, without requiring them to learn riding, do this:
UPDATE `items` SET `requiredlevel` = '1', `Requiredskill` = '0', `RequiredSkillRank` = '0' WHERE `Requiredskill` = '762' AND RequiredSkillRank = '75';
UPDATE `items` SET `requiredlevel` = '30', `Requiredskill` = '0', `RequiredSkillRank` = '0' WHERE `Requiredskill` = '762' AND RequiredSkillRank = '150';