[Service] Doing LUA requests menu

User Tag List

Page 3 of 11 FirstFirst 1234567 ... LastLast
Results 31 to 45 of 154
  1. #31
    Exacute's Avatar Active Member
    Reputation
    67
    Join Date
    Mar 2008
    Posts
    337
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Honestly: there have been reported a lot of problem about getmaintank.. it is only on a FEW servers it work^^^
    Last edited by Exacute; 08-26-2008 at 03:55 AM.
    [/COLOR]

    [Service] Doing LUA requests
  2. #32
    Babbaa's Avatar Member
    Reputation
    32
    Join Date
    Nov 2007
    Posts
    206
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    That is true.
    It works for me atleast. : )

  3. #33
    Exacute's Avatar Active Member
    Reputation
    67
    Join Date
    Mar 2008
    Posts
    337
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    however got a little request for u.. need a LUA for doors.. u know:.. require a key for open a certain door.. in my example i want to use a custom dynamite to blow up some rocks (its a go).. hope u can do that :P
    Last edited by Exacute; 08-26-2008 at 03:54 AM.
    [/COLOR]

  4. #34
    Babbaa's Avatar Member
    Reputation
    32
    Join Date
    Nov 2007
    Posts
    206
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yea sure! A new challenge!
    I'll look into it.

  5. #35
    Exacute's Avatar Active Member
    Reputation
    67
    Join Date
    Mar 2008
    Posts
    337
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thx
    (filler, BUT post nr. 100 Lol)
    [/COLOR]

  6. #36
    kaothic's Avatar Member
    Reputation
    7
    Join Date
    Oct 2007
    Posts
    167
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi babaa, the script that u maked for me to erase the ress sickness dont work, I have lua++ and when I go to talk with the npc, dont say anything. If is possible, make me a npc that can ress the player and erase the sickness instantly :P

    Thx

    Only simple things make me feel alive...

  7. #37
    Snailz's Avatar Contributor Authenticator enabled
    Reputation
    239
    Join Date
    Nov 2007
    Posts
    941
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    And ofc If you dont know how to COmpile ArcEmu With a LUA++ engine. you can always try LuaPpArc There SVN is http://mmoforge.org/svn/luapparc ANd they have a pre-compiled Version.

    User: Anonymous
    Pass: None


    and kaothic Try this :

    Code:
    local npcid = NpcId
    
    function Ress_OnGossipTalk(pUnit, event, player, pMisc)
       pUnit:GossipCreateMenu(100, player, 0)
       pUnit:GossipMenuAddItem(5, "Remove My Ress Sickness", 1, 0)
       pUnit:GossipSendMenu(player)
    end
    
    if (intid == 1) then
    pUnit:CastSpellOnTarget(15007) 
    player:UnlearnSpell(15007)
    pUnit:GossipComplete(player)
    end
    
    RegisterUnitGossipEvent(npcid, 1, "Ress_OnGossipTalk")
    RegisterUnitGossipEvent(npcid, 2, "Ress_OnGossipSelect")

    This should Remove The sickness on-talk or have an option



    Cheese Cake?

  8. #38
    Babbaa's Avatar Member
    Reputation
    32
    Join Date
    Nov 2007
    Posts
    206
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kaothic View Post
    Hi babaa, the script that u maked for me to erase the ress sickness dont work, I have lua++ and when I go to talk with the npc, dont say anything. If is possible, make me a npc that can ress the player and erase the sickness instantly :P

    Thx
    The script I made for you worked prefectly for me.
    Maybe you have an outdated version of LUA engine.

    And thanks Snailz for the answer!
    +rep

  9. #39
    Exacute's Avatar Active Member
    Reputation
    67
    Join Date
    Mar 2008
    Posts
    337
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    remember my equest :P
    [/COLOR]

  10. #40
    kaothic's Avatar Member
    Reputation
    7
    Join Date
    Oct 2007
    Posts
    167
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Snailz View Post
    And ofc If you dont know how to COmpile ArcEmu With a LUA++ engine. you can always try LuaPpArc There SVN is http://mmoforge.org/svn/luapparc ANd they have a pre-compiled Version.

    User: Anonymous
    Pass: None


    and kaothic Try this :

    Code:
    local npcid = NpcId
    
    function Ress_OnGossipTalk(pUnit, event, player, pMisc)
       pUnit:GossipCreateMenu(100, player, 0)
       pUnit:GossipMenuAddItem(5, "Remove My Ress Sickness", 1, 0)
       pUnit:GossipSendMenu(player)
    end
    
    if (intid == 1) then
    pUnit:CastSpellOnTarget(15007) 
    player:UnlearnSpell(15007)
    pUnit:GossipComplete(player)
    end
    
    RegisterUnitGossipEvent(npcid, 1, "Ress_OnGossipTalk")
    RegisterUnitGossipEvent(npcid, 2, "Ress_OnGossipSelect")

    This should Remove The sickness on-talk or have an option



    1st, I use last version of ArcLua++ and last rev of arcemu.
    2nd, correct me if this is bad, but I only need to change the local npcid = NpcId of the script to local 98000 = npcid where 98000 is the npc id, that is correct?

    Only simple things make me feel alive...

  11. #41
    thpthpthp's Avatar Contributor
    Reputation
    101
    Join Date
    Feb 2007
    Posts
    496
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    woot! finaly the script works thanks Babbaa, performer, Exacute!
    cant rep atm (gave out to much already -_-) but will as soon as i can!

  12. #42
    Performer's Avatar Contributor
    Reputation
    212
    Join Date
    Nov 2007
    Posts
    874
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Dont use Lua++.. Its dead. use BluaEngine. You can get it from our SVN.


  13. #43
    Babbaa's Avatar Member
    Reputation
    32
    Join Date
    Nov 2007
    Posts
    206
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by thpthpthp View Post
    woot! finaly the script works thanks Babbaa, performer, Exacute!
    cant rep atm (gave out to much already -_-) but will as soon as i can!

    You're welcome!

  14. #44
    Exacute's Avatar Active Member
    Reputation
    67
    Join Date
    Mar 2008
    Posts
    337
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Good it work now .. -babbaa really need my request done .. cant get moved without :P
    [/COLOR]

  15. #45
    Snailz's Avatar Contributor Authenticator enabled
    Reputation
    239
    Join Date
    Nov 2007
    Posts
    941
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    E.g Kaothic

    Code:
    local npcid = NpcId
    
    function Ress_OnGossipTalk(pUnit, event, player, pMisc)
       pUnit:GossipCreateMenu(100, player, 0)
       pUnit:GossipMenuAddItem(5, "Remove My Ress Sickness", 1, 0)
       pUnit:GossipSendMenu(player)
    end
    
    if (intid == 1) then
    pUnit:CastSpellOnTarget(15007) 
    player:UnlearnSpell(15007)
    pUnit:GossipComplete(player)
    end
    
    RegisterUnitGossipEvent(npcid, 1, "Ress_OnGossipTalk")
    RegisterUnitGossipEvent(npcid, 2, "Ress_OnGossipSelect")
    Things inn red need changeing to the NPcID or EntryID if you are using ADE
    Cheese Cake?

Page 3 of 11 FirstFirst 1234567 ... LastLast

Similar Threads

  1. [Selling] Level and Gearing Service. Also doing other requests.
    By ali0ne in forum World of Warcraft Buy Sell Trade
    Replies: 1
    Last Post: 09-06-2014, 02:03 PM
  2. [Service] Doing Dailies for free!
    By Job For a Cowboy in forum Members Only Gold And Powerleveling Buy Sell
    Replies: 6
    Last Post: 06-27-2008, 02:22 AM
  3. [Service] Avatar/Sig requests
    By Sixen in forum Art & Graphic Design
    Replies: 0
    Last Post: 05-08-2008, 08:28 PM
  4. [Service] Bapes LUA Scripting Shop
    By Bapes in forum World of Warcraft Emulator Servers
    Replies: 7
    Last Post: 04-22-2008, 09:06 PM
  5. Doing (simple) requests!
    By warsheep in forum Programming
    Replies: 2
    Last Post: 03-09-2008, 05:57 PM
All times are GMT -5. The time now is 09:25 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