A (error) Message I Have Appear in my ascent-world.exe plz help menu

User Tag List

Results 1 to 12 of 12
  1. #1
    BillyBob31's Avatar Member
    Reputation
    24
    Join Date
    Feb 2008
    Posts
    231
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    A (error) Message I Have Appear in my ascent-world.exe plz help

    here is a message i have appear in my ascent-world.exe, i think its a error seeing
    someone was having problem with a quest ill show below, along with the error above that. ( the error message appears a few times )




    Error Message In ascent-world.exe:
    scripts\QUEST - Moonglade.lua:27: attempt to call method 'getClosetPlayer' <a nil value>



    Problem Posted On My Forum:
    ima a lev 12 druid and i was trying to do the quest for shapeshifting and i was soppose to get a teleportaion spell and i did not get one idk if its a big or glitch but its stoping me from getting to moonglade and im not looking on my map to find and and go their


    So, Teleport to Moonglade is in your General Tab of your skills list
    Edit this post, if you don't have it there.
    ~Kyro


    i dont have it at all or maybe its just me but ill keep trying and let u no if i found it
    www.billywowarcraft.com

    ThE BeSt

    A (error) Message I Have Appear in my ascent-world.exe plz help
  2. #2
    ~ViVo~'s Avatar Banned
    Reputation
    52
    Join Date
    Feb 2008
    Posts
    560
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Post your Lua.
    Easy fix IMO

  3. #3
    BillyBob31's Avatar Member
    Reputation
    24
    Join Date
    Feb 2008
    Posts
    231
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Vivoxity View Post
    Post your Lua.
    Easy fix IMO
    QUEST - Monnglade.lua


    --[[ QUEST - Moonglade

    ********************************
    * *
    * The NCDB Project *
    * *
    ********************************

    This software is provided as free and open source by the
    staff of The NCDB Project, in accordance with
    the GPL license. This means we provide the software we have
    created freely and it has been thoroughly tested to work for
    the developers, but NO GUARANTEE is made it will work for you
    as well. Please give credit where credit is due, if modifying,
    redistributing and/or using this software. Thank you.

    Staff of NCDB Project, December 2007
    ~~End of License Agreement

    All credits for the files in this folder that are GameMonkey scripts
    go to the GMScripts project, for all their hard work for the Ascent
    community.

    -- NCDB Project,December 2007 ]]

    function Moonglade_Quest_onAccept (pUnit, Event)
    player = pUnit:getClosestPlayer ()
    pUnit:CastSpellOnTarget (19027, player)
    end
    RegisterQuestEvent (5921, 2, "Moonglade_Quest_onAccept")
    RegisterQuestEvent (5922, 2, "Moonglade_Quest_onAccept")
    www.billywowarcraft.com

    ThE BeSt

  4. #4
    ~ViVo~'s Avatar Banned
    Reputation
    52
    Join Date
    Feb 2008
    Posts
    560
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    First, Did you type the error wrong?
    "getClosetPlayer"?

    Possible fix.
    Code:
    function Moonglade_Quest_onAccept (pUnit, Event)
    player = pUnit:getClosestPlayer()
    pUnit:CastSpellOnTarget (19027, player)
    end
    RegisterQuestEvent (5921, 2, "Moonglade_Quest_onAccept")
    RegisterQuestEvent (5922, 2, "Moonglade_Quest_onAccept")
    replace the entire code with that..
    If that doesn't work.. Try this.

    Code:
    function Moonglade_Quest_onAccept (pUnit, Event)
    player = pUnit:TargetClosestPlayer ()
    pUnit:CastSpellOnTarget (19027, player)
    end
    RegisterQuestEvent (5921, 2, "Moonglade_Quest_onAccept")
    RegisterQuestEvent (5922, 2, "Moonglade_Quest_onAccept")

  5. #5
    BillyBob31's Avatar Member
    Reputation
    24
    Join Date
    Feb 2008
    Posts
    231
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Vivoxity View Post
    First, Did you type the error wrong?
    "getClosetPlayer"?

    Possible fix.
    Code:
    function Moonglade_Quest_onAccept (pUnit, Event)
    player = pUnit:getClosestPlayer()
    pUnit:CastSpellOnTarget (19027, player)
    end
    RegisterQuestEvent (5921, 2, "Moonglade_Quest_onAccept")
    RegisterQuestEvent (5922, 2, "Moonglade_Quest_onAccept")
    replace the entire code with that..
    If that doesn't work.. Try this.

    Code:
    function Moonglade_Quest_onAccept (pUnit, Event)
    player = pUnit:TargetClosestPlayer ()
    pUnit:CastSpellOnTarget (19027, player)
    end
    RegisterQuestEvent (5921, 2, "Moonglade_Quest_onAccept")
    RegisterQuestEvent (5922, 2, "Moonglade_Quest_onAccept")
    yes i typed it correct i thought it wierd also that it was closet and not like Closest .....

    and you want me to wipe that lua file 100 percent and replace whats in it with that ?

    cause i noticed the end of my current lua file is the same as your second code at the end ... but has all that extra garbage before it.
    Last edited by BillyBob31; 03-20-2008 at 04:11 PM.
    www.billywowarcraft.com

    ThE BeSt

  6. #6
    ~ViVo~'s Avatar Banned
    Reputation
    52
    Join Date
    Feb 2008
    Posts
    560
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    yea the garbage should be ditched.. Try the first one.

  7. #7
    BillyBob31's Avatar Member
    Reputation
    24
    Join Date
    Feb 2008
    Posts
    231
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Vivoxity View Post
    yea the garbage should be ditched.. Try the first one.
    Ok ill test within next half hour ... and if it works ill +Rep you .. thx bro ... i'll reply back if it worked or not
    www.billywowarcraft.com

    ThE BeSt

  8. #8
    ~ViVo~'s Avatar Banned
    Reputation
    52
    Join Date
    Feb 2008
    Posts
    560
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ok.. ttyl

  9. #9
    BillyBob31's Avatar Member
    Reputation
    24
    Join Date
    Feb 2008
    Posts
    231
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Vivoxity View Post
    ok.. ttyl
    Still cant do "Moonglade" quest ... aslo cant get the "Teleport: Moonglade" spell thing to teleport you to moonglade
    www.billywowarcraft.com

    ThE BeSt

  10. #10
    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)
    moon++ has the script done, just get moon++s quest scripts and your problem will be fixed.


  11. #11
    BillyBob31's Avatar Member
    Reputation
    24
    Join Date
    Feb 2008
    Posts
    231
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by doublehex View Post
    moon++ has the script done, just get moon++s quest scripts and your problem will be fixed.
    Can you give a link of where to get this ill +Rep
    www.billywowarcraft.com

    ThE BeSt

  12. #12
    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)
    their svn is http://mmoforge.org/svn/moon/ just follow the readme in there and use the moonquestscripts.dll that outputs when you compile


Similar Threads

  1. [HELP] Ascent-World.exe error ever 30 mins!!!
    By jackdaripper in forum World of Warcraft Emulator Servers
    Replies: 0
    Last Post: 06-20-2008, 02:27 PM
  2. ascent-world.exe error that keeps repeating while server runs plz help
    By BillyBob31 in forum World of Warcraft Emulator Servers
    Replies: 12
    Last Post: 03-02-2008, 06:59 PM
  3. Quests arent showing in questlog ... making error appear in ascent-world.exe
    By BillyBob31 in forum World of Warcraft Emulator Servers
    Replies: 3
    Last Post: 03-02-2008, 12:49 AM
  4. Ascent/LogOnServer/MySQL - Error message - Need help!
    By Habakka in forum World of Warcraft Emulator Servers
    Replies: 2
    Last Post: 02-21-2008, 12:56 PM
  5. How to D/C ppl, and Give them WoW Error Message
    By Zharkake in forum World of Warcraft Exploits
    Replies: 33
    Last Post: 10-05-2007, 01:55 PM
All times are GMT -5. The time now is 11:37 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search