Race/Class ID INFO here menu

User Tag List

Results 1 to 10 of 10
  1. #1
    wefwef123's Avatar Member
    Reputation
    1
    Join Date
    Jun 2008
    Posts
    69
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Race/Class ID INFO here

    HI there, i Need a little help creating a .sql to add plate and mail skills to new players.

    I have a nice script to do it already that contains lots of entries like:

    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 15, 413, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 16, 293, 400,400);

    The trouble is it gives plate and mail skills to EVERYONE even mages.

    How do I identify which indexID refers to warriors and paladin etc?
    I know the indexIDs for races (human=1 orc=2 etc)
    And I know the indexIDs for classes (warrior=1 mage=8 etc)
    But in this script the indexIDs start at 1 and go to like 56!
    How do I know which ones to cut out so that only classes that are supposed to have plate and mail have it?

    Heres a link to the file
    HI there, i Need a little help creating a .sql to add plate and mail skills to new players.

    I have a nice script to do it already that contains lots of entries like:

    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 15, 413, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 16, 293, 400,400);

    The trouble is it gives plate and mail skills to EVERYONE even mages.

    How do I identify which indexID refers to warriors and paladin etc?
    I know the indexIDs for races (human=1 orc=2 etc)
    And I know the indexIDs for classes (warrior=1 mage=8 etc)
    But in this script the indexIDs start at 1 and go to like 56!
    How do I know which ones to cut out so that only classes that are supposed to have plate and mail have it?




    Thanks in advance

    I need 3 posts to be able to

    Post a link so heres the 3 and....

    Here the link to the file with every class getting plate and mail skill.
    Which ones do I delete to only allow those that SHOULD be able to wear plate and mail to get the skill on creation. THANKS


    http://www.alterna-uo.net/wow/pands.sql.zip
    Last edited by wefwef123; 07-04-2008 at 12:05 PM. Reason: quad post merged

    Race/Class ID INFO here
  2. #2
    wefwef123's Avatar Member
    Reputation
    1
    Join Date
    Jun 2008
    Posts
    69
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone? before it drops off the page? I wanted to fix this tonight

  3. #3
    doublehex's Avatar Member
    Reputation
    34
    Join Date
    Mar 2007
    Posts
    385
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    enum Classes { WARRIOR = 1, PALADIN = 2, HUNTER = 3, ROGUE = 4, PRIEST = 5, SHAMAN = 7, MAGE = 8, WARLOCK = 9, DRUID = 11, }; enum Races { RACE_HUMAN = 1, RACE_ORC = 2, RACE_DWARF = 3, RACE_NIGHTELF = 4, RACE_UNDEAD = 5, RACE_TAUREN = 6, RACE_GNOME = 7, RACE_TROLL = 8, RACE_BLOODELF = 10, RACE_DRAENEI = 11, };


  4. #4
    wefwef123's Avatar Member
    Reputation
    1
    Join Date
    Jun 2008
    Posts
    69
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeah i know those but look at that script
    whats 39? 55? whats 46?

  5. #5
    b!atch's Avatar Member
    Reputation
    118
    Join Date
    Oct 2007
    Posts
    726
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Spectrum-X is win! Rep People That Help You and Candybones Wont Eat Your Brain:>

  6. #6
    TheSpidey's Avatar Elite User
    Reputation
    365
    Join Date
    Jan 2008
    Posts
    2,200
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The numbers refer directly to the playercreateinfo table. Use it with the enums Doublehex posted, and if you want to grind some rep, post them here too

  7. #7
    wefwef123's Avatar Member
    Reputation
    1
    Join Date
    Jun 2008
    Posts
    69
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ahhhah! Thanks I will do that

  8. #8
    wefwef123's Avatar Member
    Reputation
    1
    Join Date
    Jun 2008
    Posts
    69
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    here you go, happy to give back to a great forum
    (and for a shameless plug for my server LOL)

    http://www.alterna-uo.net/wow/raceclasses.html

  9. #9
    xtavie's Avatar Member
    Reputation
    1
    Join Date
    May 2008
    Posts
    17
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ty i needed this too

  10. #10
    wefwef123's Avatar Member
    Reputation
    1
    Join Date
    Jun 2008
    Posts
    69
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Heres the script to give everyone who is supposed to be able to wear mail/plate the mail and/or plate skill on creation:
    Thanks to all that helped with info
    ----------------------------------------------------
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 1, 293, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 1, 413, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 2, 293, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 2, 413, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 3, 293, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 3, 413, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 4, 293, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 4, 413, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 5, 293, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 5, 413, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 6, 293, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 6, 413, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 7, 293, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 7, 413, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 8, 293, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 8, 413, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 9, 293, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 9, 413, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 10, 293, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 10, 413, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 11, 413, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 12, 413, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 15, 413, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 16, 413, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 17, 413, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 30, 413, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 31, 413, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 32, 413, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 44, 293, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 44, 413, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 45, 293, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 45, 413, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 46, 413, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 48, 413, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 50, 293, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 50, 413, 400,400);
    INSERT INTO playercreateinfo_skills ( indexid, skillid, level, maxlevel )VALUES ( 51, 413, 400,400);
    --------------------------------------------------------------------------------------------
    cut and paste that into notepad and call it whatever.sql
    Then from Navicat choose FUN database and then execute sql query and find the file you made
    Last edited by wefwef123; 07-04-2008 at 11:32 PM.

Similar Threads

  1. Any race/class combo (ascent)
    By Le Froid in forum WoW EMU Guides & Tutorials
    Replies: 27
    Last Post: 12-17-2007, 12:57 PM
  2. Need tips on starting a new account. (Race/class/server/ect.)
    By Zanatons in forum World of Warcraft General
    Replies: 22
    Last Post: 10-28-2007, 11:29 AM
  3. World of Warcraft - What Race/Class?
    By Captin_55 in forum World of Warcraft General
    Replies: 10
    Last Post: 10-28-2007, 06:08 AM
  4. Replies: 23
    Last Post: 09-29-2007, 09:19 AM
  5. character race class faction
    By m0rbidang3l in forum Suggestions
    Replies: 7
    Last Post: 08-04-2007, 01:28 PM
All times are GMT -5. The time now is 02:07 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search