Advertisement
slp13at420

WD all skills new login

Jan 4th, 2013
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 15.49 KB | None | 0 0
  1.  
  2. --[[
  3.  
  4.  
  5.         Max Skills on First Login
  6.  
  7.  
  8.         Scripted by Psykko @ WoWBase ac-web.org
  9.  
  10.  
  11.         Original Script by QQrofl
  12.  
  13.  
  14. ]]--
  15.  
  16.  
  17.  
  18.  
  19.  
  20. local   SPELL_BLOCK = 107
  21.  
  22.  
  23. local   SPELL_BOWS = 264
  24.  
  25.  
  26. local   SPELL_CROSSBOWS = 5011
  27.  
  28.  
  29. local   SPELL_DAGGERS = 1180
  30.  
  31.  
  32. local   SPELL_DUAL_WIELD = 674
  33.  
  34.  
  35. local   SPELL_FIST_WEAPONS = 15590
  36.  
  37.  
  38. local   SPELL_GUNS = 266
  39.  
  40.  
  41. local   SPELL_MAIL = 8737
  42.  
  43.  
  44. local   SPELL_PLATE = 750
  45.  
  46.  
  47. local   SPELL_ONE_HANDED_AXES = 196
  48.  
  49.  
  50. local   SPELL_ONE_HANDED_MACES = 198
  51.  
  52.  
  53. local   SPELL_ONE_HANDED_SWORDS = 201
  54.  
  55.  
  56. local   SPELL_TWO_HANDED_AXES = 197
  57.  
  58.  
  59. local   SPELL_TWO_HANDED_MACES = 199
  60.  
  61.  
  62. local   SPELL_TWO_HANDED_SWORDS = 202
  63.  
  64.  
  65. local   SPELL_STAVES = 227
  66.  
  67.  
  68. local   SPELL_THROW = 2764
  69.  
  70.  
  71. local   SPELL_THROWN = 2567
  72.  
  73.  
  74. local   SPELL_POLEARMS = 200
  75.  
  76.  
  77. local   SPELL_RELIC = 52665
  78.  
  79.  
  80. local   SPELL_RELIC_2 = 27764
  81.  
  82.  
  83. local   SPELL_RELIC_3 = 27762
  84.  
  85.  
  86. local   SPELL_RELIC_4 = 27763
  87.  
  88.  
  89. local   SPELL_SHIELD = 9116
  90.  
  91.  
  92. local   SPELL_SHOOT = 3018
  93.  
  94.  
  95. local   SPELL_SHOOT_WANDS = 5019
  96.  
  97.  
  98. local   SPELL_WANDS = 5009
  99.  
  100.  
  101.  
  102.  
  103.  
  104. function on_enter_first (event, pPlayer)
  105.  
  106.  
  107. if (pPlayer:GetPlayerClass() == "Paladin") then
  108.  
  109.  
  110.         pPlayer:LearnSpell(SPELL_BLOCK)
  111.  
  112.  
  113.         pPlayer:LearnSpell(SPELL_ONE_HANDED_AXES)
  114.  
  115.  
  116.         pPlayer:LearnSpell(SPELL_ONE_HANDED_MACES)
  117.  
  118.  
  119.         pPlayer:LearnSpell(SPELL_ONE_HANDED_SWORDS)
  120.  
  121.  
  122.         pPlayer:LearnSpell(SPELL_PLATE)
  123.  
  124.  
  125.         pPlayer:LearnSpell(SPELL_POLEARMS)
  126.  
  127.  
  128.         pPlayer:LearnSpell(SPELL_RELIC_3)
  129.  
  130.  
  131.         pPlayer:LearnSpell(SPELL_SHIELD)
  132.  
  133.  
  134.         pPlayer:LearnSpell(SPELL_TWO_HANDED_AXES)
  135.  
  136.  
  137.         pPlayer:LearnSpell(SPELL_TWO_HANDED_MACES)
  138.  
  139.  
  140.         pPlayer:LearnSpell(SPELL_TWO_HANDED_SWORDS)
  141.  
  142.  
  143.         pPlayer:AdvanceSkill(43,1250)
  144.  
  145.  
  146.         pPlayer:AdvanceSkill(44,1250)
  147.  
  148.  
  149.         pPlayer:AdvanceSkill(45,1250)
  150.  
  151.  
  152.         pPlayer:AdvanceSkill(46,1250)
  153.  
  154.  
  155.         pPlayer:AdvanceSkill(54,1250)
  156.  
  157.  
  158.         pPlayer:AdvanceSkill(55,1250)
  159.  
  160.  
  161.         pPlayer:AdvanceSkill(95,1250)
  162.  
  163.  
  164.         pPlayer:AdvanceSkill(136,1250)
  165.  
  166.  
  167.         pPlayer:AdvanceSkill(160,1250)
  168.  
  169.  
  170.         pPlayer:AdvanceSkill(162,1250)
  171.  
  172.  
  173.         pPlayer:AdvanceSkill(172,1250)
  174.  
  175.  
  176.         pPlayer:AdvanceSkill(173,1250)
  177.  
  178.  
  179.         pPlayer:AdvanceSkill(176,1250)
  180.  
  181.  
  182.         pPlayer:AdvanceSkill(226,1250)
  183.  
  184.  
  185.         pPlayer:AdvanceSkill(228,1250)
  186.  
  187.  
  188.         pPlayer:AdvanceSkill(229,1250)
  189.  
  190.  
  191.         pPlayer:AdvanceSkill(473,1250)
  192.  
  193.  
  194.         pPlayer:SendAreaTriggerMessage("|cffFF0000[WoWBase]|cffFFFF05You now have all of your skills and they are also maxed out!!")
  195.  
  196.  
  197. end
  198.  
  199.  
  200.  
  201.  
  202.  
  203. if (pPlayer:GetPlayerClass() == "Shaman") then
  204.  
  205.  
  206.         pPlayer:LearnSpell(SPELL_BLOCK)
  207.  
  208.  
  209.         pPlayer:LearnSpell(SPELL_FIST_WEAPONS)
  210.  
  211.  
  212.         pPlayer:LearnSpell(SPELL_ONE_HANDED_MACES)
  213.  
  214.  
  215.         pPlayer:LearnSpell(SPELL_MAIL)
  216.  
  217.  
  218.         pPlayer:LearnSpell(SPELL_ONE_HANDED_AXES)
  219.  
  220.  
  221.         pPlayer:LearnSpell(SPELL_SHIELD)
  222.  
  223.  
  224.         pPlayer:LearnSpell(SPELL_RELIC_4)
  225.  
  226.  
  227.         pPlayer:LearnSpell(SPELL_SHIELD)
  228.  
  229.  
  230.         pPlayer:LearnSpell(SPELL_TWO_HANDED_AXES)
  231.  
  232.  
  233.         pPlayer:LearnSpell(SPELL_TWO_HANDED_MACES)
  234.  
  235.  
  236.         pPlayer:LearnSpell(SPELL_STAVES)
  237.  
  238.  
  239.         pPlayer:AdvanceSkill(43,1250)
  240.  
  241.  
  242.         pPlayer:AdvanceSkill(44,1250)
  243.  
  244.  
  245.         pPlayer:AdvanceSkill(45,1250)
  246.  
  247.  
  248.         pPlayer:AdvanceSkill(46,1250)
  249.  
  250.  
  251.         pPlayer:AdvanceSkill(54,1250)
  252.  
  253.  
  254.         pPlayer:AdvanceSkill(55,1250)
  255.  
  256.  
  257.         pPlayer:AdvanceSkill(95,1250)
  258.  
  259.  
  260.         pPlayer:AdvanceSkill(136,1250)
  261.  
  262.  
  263.         pPlayer:AdvanceSkill(160,1250)
  264.  
  265.  
  266.         pPlayer:AdvanceSkill(162,1250)
  267.  
  268.  
  269.         pPlayer:AdvanceSkill(172,1250)
  270.  
  271.  
  272.         pPlayer:AdvanceSkill(173,1250)
  273.  
  274.  
  275.         pPlayer:AdvanceSkill(176,1250)
  276.  
  277.  
  278.         pPlayer:AdvanceSkill(226,1250)
  279.  
  280.  
  281.         pPlayer:AdvanceSkill(228,1250)
  282.  
  283.  
  284.         pPlayer:AdvanceSkill(229,1250)
  285.  
  286.  
  287.         pPlayer:AdvanceSkill(473,1250)
  288.  
  289.  
  290.         pPlayer:SendAreaTriggerMessage("|cffFF0000[WoWBase]|cffFFFF05You now have all of your skills and they are also maxed out!!")
  291.  
  292.  
  293. end
  294.  
  295.  
  296.  
  297.  
  298.  
  299. if (pPlayer:GetPlayerClass() == "Warrior") then
  300.  
  301.  
  302.         pPlayer:LearnSpell(SPELL_BLOCK)
  303.  
  304.  
  305.         pPlayer:LearnSpell(SPELL_BOWS)
  306.  
  307.  
  308.         pPlayer:LearnSpell(SPELL_CROSSBOWS)
  309.  
  310.  
  311.         pPlayer:LearnSpell(SPELL_DUAL_WIELD)
  312.  
  313.  
  314.         pPlayer:LearnSpell(SPELL_FIST_WEAPONS)
  315.  
  316.  
  317.         pPlayer:LearnSpell(SPELL_GUNS)
  318.  
  319.  
  320.         pPlayer:LearnSpell(SPELL_ONE_HANDED_AXES)
  321.  
  322.  
  323.         pPlayer:LearnSpell(SPELL_ONE_HANDED_MACES)
  324.  
  325.  
  326.         pPlayer:LearnSpell(SPELL_ONE_HANDED_SWORDS)
  327.  
  328.  
  329.         pPlayer:LearnSpell(SPELL_PLATE)
  330.  
  331.  
  332.         pPlayer:LearnSpell(SPELL_POLEARMS)
  333.  
  334.  
  335.         pPlayer:LearnSpell(SPELL_SHIELD)
  336.  
  337.  
  338.         pPlayer:LearnSpell(SPELL_SHOOT)
  339.  
  340.  
  341.         pPlayer:LearnSpell(SPELL_STAVES)
  342.  
  343.  
  344.         pPlayer:LearnSpell(SPELL_THROW)
  345.  
  346.  
  347.         pPlayer:LearnSpell(SPELL_THROWN)
  348.  
  349.  
  350.         pPlayer:LearnSpell(SPELL_TWO_HANDED_AXES)
  351.  
  352.  
  353.         pPlayer:LearnSpell(SPELL_TWO_HANDED_MACES)
  354.  
  355.  
  356.         pPlayer:LearnSpell(SPELL_TWO_HANDED_SWORDS)
  357.  
  358.  
  359.         pPlayer:AdvanceSkill(43,1250)
  360.  
  361.  
  362.         pPlayer:AdvanceSkill(44,1250)
  363.  
  364.  
  365.         pPlayer:AdvanceSkill(45,1250)
  366.  
  367.  
  368.         pPlayer:AdvanceSkill(46,1250)
  369.  
  370.  
  371.         pPlayer:AdvanceSkill(54,1250)
  372.  
  373.  
  374.         pPlayer:AdvanceSkill(55,1250)
  375.  
  376.  
  377.         pPlayer:AdvanceSkill(95,1250)
  378.  
  379.  
  380.         pPlayer:AdvanceSkill(136,1250)
  381.  
  382.  
  383.         pPlayer:AdvanceSkill(160,1250)
  384.  
  385.  
  386.         pPlayer:AdvanceSkill(162,1250)
  387.  
  388.  
  389.         pPlayer:AdvanceSkill(172,1250)
  390.  
  391.  
  392.         pPlayer:AdvanceSkill(173,1250)
  393.  
  394.  
  395.         pPlayer:AdvanceSkill(176,1250)
  396.  
  397.  
  398.         pPlayer:AdvanceSkill(226,1250)
  399.  
  400.  
  401.         pPlayer:AdvanceSkill(228,1250)
  402.  
  403.  
  404.         pPlayer:AdvanceSkill(229,1250)
  405.  
  406.  
  407.         pPlayer:AdvanceSkill(473,1250)
  408.  
  409.  
  410.         pPlayer:SendAreaTriggerMessage("|cffFF0000[WoWBase]|cffFFFF05You now have all of your skills and they are also maxed out!!")
  411.  
  412.  
  413. end
  414.  
  415.  
  416.  
  417.  
  418.  
  419. if (pPlayer:GetPlayerClass() == "Hunter") then
  420.  
  421.  
  422.         pPlayer:LearnSpell(SPELL_BOWS)
  423.  
  424.  
  425.         pPlayer:LearnSpell(SPELL_CROSSBOWS)
  426.  
  427.  
  428.         pPlayer:LearnSpell(SPELL_DUAL_WIELD)
  429.  
  430.  
  431.         pPlayer:LearnSpell(SPELL_FIST_WEAPONS)
  432.  
  433.  
  434.         pPlayer:LearnSpell(SPELL_GUNS)
  435.  
  436.  
  437.         pPlayer:LearnSpell(SPELL_ONE_HANDED_AXES)
  438.  
  439.  
  440.         pPlayer:LearnSpell(SPELL_ONE_HANDED_SWORDS)
  441.  
  442.  
  443.         pPlayer:LearnSpell(SPELL_MAIL)
  444.  
  445.  
  446.         pPlayer:LearnSpell(SPELL_POLEARMS)
  447.  
  448.  
  449.         pPlayer:LearnSpell(SPELL_STAVES)
  450.  
  451.  
  452.         pPlayer:LearnSpell(SPELL_TWO_HANDED_AXES)
  453.  
  454.  
  455.         pPlayer:LearnSpell(SPELL_TWO_HANDED_SWORDS)
  456.  
  457.  
  458.         pPlayer:AdvanceSkill(43,1250)
  459.  
  460.  
  461.         pPlayer:AdvanceSkill(44,1250)
  462.  
  463.  
  464.         pPlayer:AdvanceSkill(45,1250)
  465.  
  466.  
  467.         pPlayer:AdvanceSkill(46,1250)
  468.  
  469.  
  470.         pPlayer:AdvanceSkill(54,1250)
  471.  
  472.  
  473.         pPlayer:AdvanceSkill(55,1250)
  474.  
  475.  
  476.         pPlayer:AdvanceSkill(95,1250)
  477.  
  478.  
  479.         pPlayer:AdvanceSkill(136,1250)
  480.  
  481.  
  482.         pPlayer:AdvanceSkill(160,1250)
  483.  
  484.  
  485.         pPlayer:AdvanceSkill(162,1250)
  486.  
  487.  
  488.         pPlayer:AdvanceSkill(172,1250)
  489.  
  490.  
  491.         pPlayer:AdvanceSkill(173,1250)
  492.  
  493.  
  494.         pPlayer:AdvanceSkill(176,1250)
  495.  
  496.  
  497.         pPlayer:AdvanceSkill(226,1250)
  498.  
  499.  
  500.         pPlayer:AdvanceSkill(228,1250)
  501.  
  502.  
  503.         pPlayer:AdvanceSkill(229,1250)
  504.  
  505.  
  506.         pPlayer:AdvanceSkill(473,1250)
  507.  
  508.  
  509.         pPlayer:SendAreaTriggerMessage("|cffFF0000[WoWBase]|cffFFFF05You now have all of your skills and they are also maxed out!!")
  510.  
  511.  
  512. end
  513.  
  514.  
  515.  
  516.  
  517.  
  518. if (pPlayer:GetPlayerClass() == "Rogue") then
  519.  
  520.  
  521.         pPlayer:LearnSpell(SPELL_BOWS)
  522.  
  523.  
  524.         pPlayer:LearnSpell(SPELL_CROSSBOWS)
  525.  
  526.  
  527.         pPlayer:LearnSpell(SPELL_DUAL_WIELD)
  528.  
  529.  
  530.         pPlayer:LearnSpell(SPELL_FIST_WEAPONS)
  531.  
  532.  
  533.         pPlayer:LearnSpell(SPELL_GUNS)
  534.  
  535.  
  536.         pPlayer:LearnSpell(SPELL_ONE_HANDED_AXES)
  537.  
  538.  
  539.         pPlayer:LearnSpell(SPELL_ONE_HANDED_MACES)
  540.  
  541.  
  542.         pPlayer:LearnSpell(SPELL_ONE_HANDED_SWORDS)
  543.  
  544.  
  545.         pPlayer:LearnSpell(SPELL_SHOOT)
  546.  
  547.  
  548.         pPlayer:LearnSpell(SPELL_THROW)
  549.  
  550.  
  551.         pPlayer:LearnSpell(SPELL_THROWN)
  552.  
  553.  
  554.         pPlayer:AdvanceSkill(43,1250)
  555.  
  556.  
  557.         pPlayer:AdvanceSkill(44,1250)
  558.  
  559.  
  560.         pPlayer:AdvanceSkill(45,1250)
  561.  
  562.  
  563.         pPlayer:AdvanceSkill(46,1250)
  564.  
  565.  
  566.         pPlayer:AdvanceSkill(54,1250)
  567.  
  568.  
  569.         pPlayer:AdvanceSkill(55,1250)
  570.  
  571.  
  572.         pPlayer:AdvanceSkill(95,1250)
  573.  
  574.  
  575.         pPlayer:AdvanceSkill(136,1250)
  576.  
  577.  
  578.         pPlayer:AdvanceSkill(160,1250)
  579.  
  580.  
  581.         pPlayer:AdvanceSkill(162,1250)
  582.  
  583.  
  584.         pPlayer:AdvanceSkill(172,1250)
  585.  
  586.  
  587.         pPlayer:AdvanceSkill(173,1250)
  588.  
  589.  
  590.         pPlayer:AdvanceSkill(176,1250)
  591.  
  592.  
  593.         pPlayer:AdvanceSkill(226,1250)
  594.  
  595.  
  596.         pPlayer:AdvanceSkill(228,1250)
  597.  
  598.  
  599.         pPlayer:AdvanceSkill(229,1250)
  600.  
  601.  
  602.         pPlayer:AdvanceSkill(473,1250)
  603.  
  604.  
  605.         pPlayer:SendAreaTriggerMessage("|cffFF0000[WoWBase]|cffFFFF05You now have all of your skills and they are also maxed out!!")
  606.  
  607.  
  608. end
  609.  
  610.  
  611.  
  612.  
  613.  
  614. if (pPlayer:GetPlayerClass() == "Druid") then
  615.  
  616.  
  617.         pPlayer:LearnSpell(SPELL_DRAGGERS)
  618.  
  619.  
  620.         pPlayer:LearnSpell(SPELL_FIST_WEAPONS)
  621.  
  622.  
  623.         pPlayer:LearnSpell(SPELL_ONE_HANDED_MACES)
  624.  
  625.  
  626.         pPlayer:LearnSpell(SPELL_POLEARMS)
  627.  
  628.  
  629.         pPlayer:LearnSpell(SPELL_RELIC_2)
  630.  
  631.  
  632.         pPlayer:LearnSpell(SPELL_STAVES)
  633.  
  634.  
  635.         pPlayer:LearnSpell(SPELL_TWO_HANDED_MACES)
  636.  
  637.  
  638.         pPlayer:AdvanceSkill(43,1250)
  639.  
  640.  
  641.         pPlayer:AdvanceSkill(44,1250)
  642.  
  643.  
  644.         pPlayer:AdvanceSkill(45,1250)
  645.  
  646.  
  647.         pPlayer:AdvanceSkill(46,1250)
  648.  
  649.  
  650.         pPlayer:AdvanceSkill(54,1250)
  651.  
  652.  
  653.         pPlayer:AdvanceSkill(55,1250)
  654.  
  655.  
  656.         pPlayer:AdvanceSkill(95,1250)
  657.  
  658.  
  659.         pPlayer:AdvanceSkill(136,1250)
  660.  
  661.  
  662.         pPlayer:AdvanceSkill(160,1250)
  663.  
  664.  
  665.         pPlayer:AdvanceSkill(162,1250)
  666.  
  667.  
  668.         pPlayer:AdvanceSkill(172,1250)
  669.  
  670.  
  671.         pPlayer:AdvanceSkill(173,1250)
  672.  
  673.  
  674.         pPlayer:AdvanceSkill(176,1250)
  675.  
  676.  
  677.         pPlayer:AdvanceSkill(226,1250)
  678.  
  679.  
  680.         pPlayer:AdvanceSkill(228,1250)
  681.  
  682.  
  683.         pPlayer:AdvanceSkill(229,1250)
  684.  
  685.  
  686.         pPlayer:AdvanceSkill(473,1250)
  687.  
  688.  
  689.         pPlayer:SendAreaTriggerMessage("|cffFF0000[WoWBase]|cffFFFF05You now have all of your skills and they are also maxed out!!")
  690.  
  691.  
  692. end
  693.  
  694.  
  695.  
  696.  
  697.  
  698. if (pPlayer:GetPlayerClass() == "Mage") then
  699.  
  700.  
  701.         pPlayer:LearnSpell(SPELL_DRAGGERS)
  702.  
  703.  
  704.         pPlayer:LearnSpell(SPELL_ONE_HANDED_SWORDS)
  705.  
  706.  
  707.         pPlayer:LearnSpell(SPELL_SHOOT_WANDS)
  708.  
  709.  
  710.         pPlayer:LearnSpell(SPELL_STAVES)
  711.  
  712.  
  713.         pPlayer:LearnSpell(SPELL_WANDS)
  714.  
  715.  
  716.         pPlayer:AdvanceSkill(43,1250)
  717.  
  718.  
  719.         pPlayer:AdvanceSkill(44,1250)
  720.  
  721.  
  722.         pPlayer:AdvanceSkill(45,1250)
  723.  
  724.  
  725.         pPlayer:AdvanceSkill(46,1250)
  726.  
  727.  
  728.         pPlayer:AdvanceSkill(54,1250)
  729.  
  730.  
  731.         pPlayer:AdvanceSkill(55,1250)
  732.  
  733.  
  734.         pPlayer:AdvanceSkill(95,1250)
  735.  
  736.  
  737.         pPlayer:AdvanceSkill(136,1250)
  738.  
  739.  
  740.         pPlayer:AdvanceSkill(160,1250)
  741.  
  742.  
  743.         pPlayer:AdvanceSkill(162,1250)
  744.  
  745.  
  746.         pPlayer:AdvanceSkill(172,1250)
  747.  
  748.  
  749.         pPlayer:AdvanceSkill(173,1250)
  750.  
  751.  
  752.         pPlayer:AdvanceSkill(176,1250)
  753.  
  754.  
  755.         pPlayer:AdvanceSkill(226,1250)
  756.  
  757.  
  758.         pPlayer:AdvanceSkill(228,1250)
  759.  
  760.  
  761.         pPlayer:AdvanceSkill(229,1250)
  762.  
  763.  
  764.         pPlayer:AdvanceSkill(473,1250)
  765.  
  766.  
  767.         pPlayer:SendAreaTriggerMessage("|cffFF0000[WoWBase]|cffFFFF05You now have all of your skills and they are also maxed out!!")
  768.  
  769.  
  770. end
  771.  
  772.  
  773.  
  774.  
  775.  
  776. if (pPlayer:GetPlayerClass() == "Warlock") then
  777.  
  778.  
  779.         pPlayer:LearnSpell(SPELL_DRAGGERS)
  780.  
  781.  
  782.         pPlayer:LearnSpell(SPELL_ONE_HANDED_SWORDS)
  783.  
  784.  
  785.         pPlayer:LearnSpell(SPELL_SHOOT_WANDS)
  786.  
  787.  
  788.         pPlayer:LearnSpell(SPELL_STAVES)
  789.  
  790.  
  791.         pPlayer:LearnSpell(SPELL_WANDS)
  792.  
  793.  
  794.         pPlayer:AdvanceSkill(43,1250)
  795.  
  796.  
  797.         pPlayer:AdvanceSkill(44,1250)
  798.  
  799.  
  800.         pPlayer:AdvanceSkill(45,1250)
  801.  
  802.  
  803.         pPlayer:AdvanceSkill(46,1250)
  804.  
  805.  
  806.         pPlayer:AdvanceSkill(54,1250)
  807.  
  808.  
  809.         pPlayer:AdvanceSkill(55,1250)
  810.  
  811.  
  812.         pPlayer:AdvanceSkill(95,1250)
  813.  
  814.  
  815.         pPlayer:AdvanceSkill(136,1250)
  816.  
  817.  
  818.         pPlayer:AdvanceSkill(160,1250)
  819.  
  820.  
  821.         pPlayer:AdvanceSkill(162,1250)
  822.  
  823.  
  824.         pPlayer:AdvanceSkill(172,1250)
  825.  
  826.  
  827.         pPlayer:AdvanceSkill(173,1250)
  828.  
  829.  
  830.         pPlayer:AdvanceSkill(176,1250)
  831.  
  832.  
  833.         pPlayer:AdvanceSkill(226,1250)
  834.  
  835.  
  836.         pPlayer:AdvanceSkill(228,1250)
  837.  
  838.  
  839.         pPlayer:AdvanceSkill(229,1250)
  840.  
  841.  
  842.         pPlayer:AdvanceSkill(473,1250)
  843.  
  844.  
  845.         pPlayer:SendAreaTriggerMessage("|cffFF0000[WoWBase]|cffFFFF05You now have all of your skills and they are also maxed out!!")
  846.  
  847.  
  848. end
  849.  
  850.  
  851.  
  852.  
  853.  
  854. if (pPlayer:GetPlayerClass() == "Priest") then
  855.  
  856.  
  857.         pPlayer:LearnSpell(SPELL_DRAGGERS)
  858.  
  859.  
  860.         pPlayer:LearnSpell(SPELL_ONE_HANDED_SWORDS)
  861.  
  862.  
  863.         pPlayer:LearnSpell(SPELL_SHOOT_WANDS)
  864.  
  865.  
  866.         pPlayer:LearnSpell(SPELL_STAVES)
  867.  
  868.  
  869.         pPlayer:LearnSpell(SPELL_WANDS)
  870.  
  871.  
  872.         pPlayer:AdvanceSkill(43,1250)
  873.  
  874.  
  875.         pPlayer:AdvanceSkill(44,1250)
  876.  
  877.  
  878.         pPlayer:AdvanceSkill(45,1250)
  879.  
  880.  
  881.         pPlayer:AdvanceSkill(46,1250)
  882.  
  883.  
  884.         pPlayer:AdvanceSkill(54,1250)
  885.  
  886.  
  887.         pPlayer:AdvanceSkill(55,1250)
  888.  
  889.  
  890.         pPlayer:AdvanceSkill(95,1250)
  891.  
  892.  
  893.         pPlayer:AdvanceSkill(136,1250)
  894.  
  895.  
  896.         pPlayer:AdvanceSkill(160,1250)
  897.  
  898.  
  899.         pPlayer:AdvanceSkill(162,1250)
  900.  
  901.  
  902.         pPlayer:AdvanceSkill(172,1250)
  903.  
  904.  
  905.         pPlayer:AdvanceSkill(173,1250)
  906.  
  907.  
  908.         pPlayer:AdvanceSkill(176,1250)
  909.  
  910.  
  911.         pPlayer:AdvanceSkill(226,1250)
  912.  
  913.  
  914.         pPlayer:AdvanceSkill(228,1250)
  915.  
  916.  
  917.         pPlayer:AdvanceSkill(229,1250)
  918.  
  919.  
  920.         pPlayer:AdvanceSkill(473,1250)
  921.  
  922.  
  923.         pPlayer:SendAreaTriggerMessage("|cffFF0000[WoWBase]|cffFFFF05You now have all of your skills and they are also maxed out!!")
  924.  
  925.  
  926. end
  927.  
  928.  
  929.  
  930.  
  931.  
  932. if (pPlayer:GetPlayerClass() == "Deathknight") then
  933.  
  934.  
  935.         pPlayer:LearnSpell(SPELL_DUAL_WIELD)
  936.  
  937.  
  938.         pPlayer:LearnSpell(SPELL_ONE_HANDED_AXES)
  939.  
  940.  
  941.         pPlayer:LearnSpell(SPELL_ONE_HANDED_MACES)
  942.  
  943.  
  944.         pPlayer:LearnSpell(SPELL_ONE_HANDED_SWORDS)
  945.  
  946.  
  947.         pPlayer:LearnSpell(SPELL_PLATE)
  948.  
  949.  
  950.         pPlayer:LearnSpell(SPELL_POLEARMS)
  951.  
  952.  
  953.         pPlayer:LearnSpell(SPELL_RELIC)
  954.  
  955.  
  956.         pPlayer:LearnSpell(SPELL_TWO_HANDED_AXES)
  957.  
  958.  
  959.         pPlayer:LearnSpell(SPELL_TWO_HANDED_MACES)
  960.  
  961.  
  962.         pPlayer:LearnSpell(SPELL_TWO_HANDED_SWORDS)
  963.  
  964.  
  965.         pPlayer:AdvanceSkill(43,1250)
  966.  
  967.  
  968.         pPlayer:AdvanceSkill(44,1250)
  969.  
  970.  
  971.         pPlayer:AdvanceSkill(45,1250)
  972.  
  973.  
  974.         pPlayer:AdvanceSkill(46,1250)
  975.  
  976.  
  977.         pPlayer:AdvanceSkill(54,1250)
  978.  
  979.  
  980.         pPlayer:AdvanceSkill(55,1250)
  981.  
  982.  
  983.         pPlayer:AdvanceSkill(95,1250)
  984.  
  985.  
  986.         pPlayer:AdvanceSkill(136,1250)
  987.  
  988.  
  989.         pPlayer:AdvanceSkill(160,1250)
  990.  
  991.  
  992.         pPlayer:AdvanceSkill(162,1250)
  993.  
  994.  
  995.         pPlayer:AdvanceSkill(172,1250)
  996.  
  997.  
  998.         pPlayer:AdvanceSkill(173,1250)
  999.  
  1000.  
  1001.         pPlayer:AdvanceSkill(176,1250)
  1002.  
  1003.  
  1004.         pPlayer:AdvanceSkill(226,1250)
  1005.  
  1006.  
  1007.         pPlayer:AdvanceSkill(228,1250)
  1008.  
  1009.  
  1010.         pPlayer:AdvanceSkill(229,1250)
  1011.  
  1012.  
  1013.         pPlayer:AdvanceSkill(473,1250)
  1014.  
  1015.  
  1016.         pPlayer:SendAreaTriggerMessage("|cffFF0000[WoWBase]|cffFFFF05You now have all of your skills and they are also maxed out!!")
  1017.  
  1018.  
  1019. end
  1020.  
  1021.  
  1022. end
  1023.  
  1024.  
  1025.  
  1026.  
  1027.  
  1028.  
  1029.  
  1030.  
  1031. RegisterServerHook(3, on_enter_first)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement