[2/24/08] Ascent Compiles and Extras menu

User Tag List

Page 3 of 20 FirstFirst 1234567 ... LastLast
Results 31 to 45 of 290
  1. #31
    LJN's Avatar Member
    Reputation
    273
    Join Date
    Jun 2007
    Posts
    731
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    K let me make sure the SQL will work first

    [2/24/08] Ascent Compiles and Extras
  2. #32
    Gastricpenguin's Avatar Legendary
    Reputation
    980
    Join Date
    Feb 2007
    Posts
    2,236
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Added LUA scripts to the first post
    Life Puzzler WoW - Website | Forums

  3. #33
    Kirth's Avatar Active Member
    Reputation
    58
    Join Date
    Nov 2007
    Posts
    274
    Thanks G/R
    2/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Do these have LUA enabled?

  4. #34
    Gastricpenguin's Avatar Legendary
    Reputation
    980
    Join Date
    Feb 2007
    Posts
    2,236
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    2790 + do

    Im going to be adding some of my custom LUA soon
    Life Puzzler WoW - Website | Forums

  5. #35
    LJN's Avatar Member
    Reputation
    273
    Join Date
    Jun 2007
    Posts
    731
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sorry Almost Done with the starter armor and weapons.

  6. #36
    Gastricpenguin's Avatar Legendary
    Reputation
    980
    Join Date
    Feb 2007
    Posts
    2,236
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Also, here are 2 LUA scripts you can all edit and practice on. Both work and have been tested. The defias script has the first big code commented out, as the math.random function isnt fully done yet. Ill see if i can get that part working later, but the bottom works.

    Lastly, first post updated with 2800+

    Gastric - StormwindGuard.lua
    Code:
    --[[ UNIT - StormwindGuard - Generic.lua
    This script makes stormwind city guards and patrollers yell
    when a player enters combat with them. Although this isn't
    exactly what they say in retail, ill have to get that from
    someone else ><
    -- By Gastricpenguin ]]
    function StormwindGuard_onAgro(pUnit, Event)
     pUnit:SendChatMessage (11, 0, "You there, halt!")
    end
    RegisterUnitEvent (68, 1, "StormwindGuard_onAgro")
    RegisterUnitEvent (1423, 1, "StormwindGuard_onAgro")
    RegisterUnitEvent (1756, 1, "StormwindGuard_onAgro")
    RegisterUnitEvent (1976, 1, "StormwindGuard_onAgro")

    Gastric - TheDefias.lua
    Code:
    --[[ UNIT - Defias - Generic.lua
    This script makes every Defias mob say what they
    normally would on retail. Except for the fact i 
    can't record all of them and i can't really
    randomize the phrase each of them say. Data:
    121 Pathstalker
    122 Highwayman
    215 Night Runner
    449 Knuckleduster
    450 Renegade Mage
    467 The Defias Traitor *EXLUDE* He isn't a defias :<
    474 Rogue Wizard
    481 Footpad
    504 Trapper
    550 Messenger
    583 Ambusher
    589 Pillager
    590 Looter
    594 Henchman
    598 Miner
    619 Conjurer
    634 OVerseer
    636 Blackguard
    657 Pirate
    824 Digger
    909 Night Blade
    910 Enchanter
    function DefiasTalk_onAgro(pUnit, Event)
      spin = math.random (1, 4)
          if (spin == 1) then
            pUnit:SendChatMessage (11, 0, "Taste my blade!")
          elseif (spin == 2) then
            pUnit:SendChatMessage (11, 0, "Finally, a chance to use my sharpened blade!")
          elseif (spin == 3) then
            pUnit:SendChatMessage (11, 0, "I'll teach you to mess with the Defias!")
          elseif (spin == 4) then
            pUnit:SendChatMessage (11, 0, "Taste my blade!")
          elseif (spin == 5) then
            pUnit:SendChatMessage (11, 0, "Engarde!")
          elseif (spin == 6) then
            pUnit:SendChatMessage (11, 0, "Yarr!")
          else
             print ("Error: Gastric - TheDefias.lua: function block() - invalid number rolled")
          end
    end
    RegisterUnitEvent (38, 1, "DefiasTalk_onAgro")
    RegisterUnitEvent (94, 1, "DefiasTalk_onAgro")
    RegisterUnitEvent (95, 1, "DefiasTalk_onAgro")
    RegisterUnitEvent (116, 1, "DefiasTalk_onAgro")
    RegisterUnitEvent (121, 1, "DefiasTalk_onAgro")
    RegisterUnitEvent (122, 1, "DefiasTalk_onAgro")
    RegisterUnitEvent (215, 1, "DefiasTalk_onAgro")
    RegisterUnitEvent (449, 1, "DefiasTalk_onAgro")
    --RegisterUnitEvent (450, 1, "DefiasTalk_onAgro")
    --RegisterUnitEvent (467, 1, "DefiasTalk_onAgro")
    --RegisterUnitEvent (474, 1, "DefiasTalk_onAgro")
    RegisterUnitEvent (481, 1, "DefiasTalk_onAgro")
    RegisterUnitEvent (504, 1, "DefiasTalk_onAgro")
    --RegisterUnitEvent (550, 1, "DefiasTalk_onAgro")
    RegisterUnitEvent (583, 1, "DefiasTalk_onAgro")
    RegisterUnitEvent (589, 1, "DefiasTalk_onAgro")
    RegisterUnitEvent (590, 1, "DefiasTalk_onAgro")
    RegisterUnitEvent (594, 1, "DefiasTalk_onAgro")
    RegisterUnitEvent (598, 1, "DefiasTalk_onAgro")
    --RegisterUnitEvent (619, 1, "DefiasTalk_onAgro")
    RegisterUnitEvent (634, 1, "DefiasTalk_onAgro")
    RegisterUnitEvent (636, 1, "DefiasTalk_onAgro")
    RegisterUnitEvent (657, 1, "DefiasTalk_onAgro")
    RegisterUnitEvent (824, 1, "DefiasTalk_onAgro")
    RegisterUnitEvent (909, 1, "DefiasTalk_onAgro")
    RegisterUnitEvent (910, 1, "DefiasTalk_onAgro")
    -- By Gastricpenguin ]]
    function DefiasThug_onAgro(pUnit, Event)
     pUnit:SendChatMessage (11, 0, "Taste my blade!")
    end
    RegisterUnitEvent (38, 1, "DefiasThug_onAgro")
    function DefiasCutpurse_onAgro(pUnit, Event)
     pUnit:SendChatMessage (11, 0, "Finally, a chance to use my sharpened blade!")
    end
    RegisterUnitEvent (94, 1, "DefiasCutpurse_onAgro")
    function DefiasSmuggler_onAgro(pUnit, Event)
     pUnit:SendChatMessage (11, 0, "I'll teach you to mess with the Defias!")
    end
    RegisterUnitEvent (95, 1, "DefiasSmuggler_onAgro")
    function DefiasBandit_onAgro(pUnit, Event)
     pUnit:SendChatMessage (11, 0, "Taste my blade!")
    end
    RegisterUnitEvent (116, 1, "DefiasBandit_onAgro")
    Life Puzzler WoW - Website | Forums

  7. #37
    LJN's Avatar Member
    Reputation
    273
    Join Date
    Jun 2007
    Posts
    731
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ok heres that File for starter Weapons and armor.
    Filebeam - Free Fast File Hosting

  8. #38
    Gastricpenguin's Avatar Legendary
    Reputation
    980
    Join Date
    Feb 2007
    Posts
    2,236
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Happy new year, updated post ^^
    So... tired... ><
    Life Puzzler WoW - Website | Forums

  9. #39
    LJN's Avatar Member
    Reputation
    273
    Join Date
    Jun 2007
    Posts
    731
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Dont use that link use my new one in the thread.

  10. #40
    Gastricpenguin's Avatar Legendary
    Reputation
    980
    Join Date
    Feb 2007
    Posts
    2,236
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Added new 2.8 Stable branch, and new Trunk release.
    Going to be adding fresh new LUA and new PvpSystem modifications soon
    Life Puzzler WoW - Website | Forums

  11. #41
    Rouslan's Avatar Active Member
    Reputation
    30
    Join Date
    Nov 2007
    Posts
    164
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    doesnt work

    there is a problem with ItemExtendedCost.dbc

    it fails to load it .. for like 45 seconds then shows alot of errors and then it loads.... so iam wondering what needs to be done to fdix that

  12. #42
    mafiaboy's Avatar Contributor
    Reputation
    235
    Join Date
    May 2007
    Posts
    698
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    does the latest NCDB have zul aman in it?

    +2 rep by the way

  13. #43
    sassafrass686's Avatar Member
    Reputation
    8
    Join Date
    Feb 2007
    Posts
    51
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    /love and +rep
    Thanks dude

    Also, is NCDB blizzlike? I forgot... :P
    Last edited by sassafrass686; 01-02-2008 at 07:12 PM.

  14. #44
    Gastricpenguin's Avatar Legendary
    Reputation
    980
    Join Date
    Feb 2007
    Posts
    2,236
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Wellp just got back and compiled the newest core, post updated
    added NCDB 780 aswell
    Life Puzzler WoW - Website | Forums

  15. #45
    SectorSeven's Avatar Banned
    Reputation
    444
    Join Date
    Oct 2007
    Posts
    1,948
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can you add 2.3 maps?

Page 3 of 20 FirstFirst 1234567 ... LastLast

Similar Threads

  1. Easy way to make ascent server and making it public :D
    By Phirotic in forum WoW EMU Guides & Tutorials
    Replies: 15
    Last Post: 08-19-2010, 09:29 PM
  2. [Release] BillyBob's Ascent Rev Core Compiles and NCDB " UPDATED HOURLY "
    By BillyBob31 in forum World of Warcraft Emulator Servers
    Replies: 89
    Last Post: 07-05-2008, 06:08 PM
  3. GUIDE - Compile and Set Up Ascent Youself!
    By somguynamedmason in forum WoW EMU Guides & Tutorials
    Replies: 9
    Last Post: 06-03-2008, 08:39 AM
  4. Making an Ascent server, and making it 2.2
    By Chase in forum WoW EMU Guides & Tutorials
    Replies: 107
    Last Post: 11-06-2007, 10:53 AM
  5. List of Repacks, Compiles and Databases for ManGOS, Ascent, Antrix.
    By faxmunky in forum World of Warcraft Emulator Servers
    Replies: 2
    Last Post: 11-04-2007, 04:02 AM
All times are GMT -5. The time now is 10:08 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