[NEW] EMU Expert Question/request/FAQ thread, QUESTIONS HERE! menu

User Tag List

Page 73 of 80 FirstFirst ... 23697071727374757677 ... LastLast
Results 1,081 to 1,095 of 1190
  1. #1081
    jaffajake's Avatar Member
    Reputation
    1
    Join Date
    Aug 2008
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    reply to how to make jst gm

    to make some one a gm on your priavte server put a in the gm box

    [NEW] EMU Expert Question/request/FAQ thread, QUESTIONS HERE!
  2. #1082
    lasermonkey's Avatar Member
    Reputation
    1
    Join Date
    Sep 2008
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Creating a portable teleport NPC

    I'm looking for a bit of help, or at least a friendly point in the right direction ... I'm trying to figure out a simple way of making one of my teleport NPC's portable ... I made some progress in the fact that I turned one of them into a non-combat pet ... I just changed his entry numbers to take over the record for the NPC summoned by the item ...

    When I right click the item, the NPC is spawned, according to how I set him up, custom scale and all, but all his options are now gone, as in, when you right click him, it just comes up with the "Hello <name>, how can I help you" gossip text.

    Anyone know what I might be able to do from here ?

    Any help is greatly appreciated, and I'll +Rep as much as I can if someone can help me get any farther with this.

  3. #1083
    Legitimate's Avatar Member
    Reputation
    2
    Join Date
    Sep 2008
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You want him to teleport someone? Well you could use lua or C++ to create a gossip menu, that would in-turn teleport the player.

  4. #1084
    synhio's Avatar Member
    Reputation
    1
    Join Date
    Aug 2008
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    mysql error

    i need some help with mysql i got many times the error 1045 can't connect to root@localhost password YES, and NO sometimes
    i know that this comes that the service isnt on and that is my problem when i put the service on its goes off straight away

    please help me,
    thnx synhio

  5. #1085
    lasermonkey's Avatar Member
    Reputation
    1
    Join Date
    Sep 2008
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Portable teleporter

    Well, that's where I'm confused, cause I took an already existing teleporter guy, and just changed his entry number to be the sinister squashling summoned by the item ... and the item does summon and dismiss him, but he longer has his gossip texts ... I take it then that the scripts for the npc are tied to the original entry number ... is there a tool that can help me change the .dll ?

  6. #1086
    erebos's Avatar Active Member
    Reputation
    27
    Join Date
    Aug 2007
    Posts
    114
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I made a warper in lua that gives you some items. But i cant figure out how can i make the warper give those items only 1 time.

    Heres the script:

    Code:
    local npcid = 8
    
    function blackout_OnGossipTalk(pUnit,event, player, pMisc)
        pUnit:GossipCreateMenu(3544, player, 0)
        pUnit:GossipMenuAddItem(5, "Hordes", 16, 0)
        pUnit:GossipMenuAddItem(5, "Alliance", 15, 0)
        pUnit:GossipMenuAddItem(6, "Black0uT Starting Stuff", 136, 0)
        pUnit:GossipMenuAddItem(8, "Buff Spells", 900, 0)
        pUnit:GossipSendMenu(player)
    end
    
    function blackout_OnGossip_Select(pUnit, event, player, id, intid, code, pMisc)
    if(intid == 16) then
        pUnit:GossipCreateMenu(3543, player, 0) 
        pUnit:GossipMenuAddItem(1, "Orgrimmar", 38, 0)
        pUnit:GossipMenuAddItem(1, "Undercity", 39, 0)
        pUnit:GossipMenuAddItem(1, "Thunder Bluff", 40, 0)
        pUnit:GossipMenuAddItem(1, "Silvermoon City", 41, 0)
        pUnit:GossipMenuAddItem(2, "Back", 100, 0)
        pUnit:GossipSendMenu(player)
    end
    if(intid == 15) then
        pUnit:GossipCreateMenu(3543, player, 0) 
        pUnit:GossipMenuAddItem(1, "Stormwind", 34, 0)
        pUnit:GossipMenuAddItem(1, "Ironforge", 35, 0)
        pUnit:GossipMenuAddItem(1, "Darnassus", 36, 0)
        pUnit:GossipMenuAddItem(1, "The Exodar", 37, 0)
        pUnit:GossipMenuAddItem(2, "Back", 100, 0)
        pUnit:GossipSendMenu(player)
    end
    if(intid == 136) then 
        pUnit:GossipCreateMenu(3543, player, 0)
        pUnit:GossipMenuAddItem(6, "Black0ut Starter Gear", 10, 0)
        pUnit:GossipMenuAddItem(6, "Black0ut Ressurection", 13, 0) 
        pUnit:GossipMenuAddItem(6, "Black0ut Elixirs", 258, 0)
        pUnit:GossipMenuAddItem(6, "Black0ut Scrolls", 259, 0)
        pUnit:GossipMenuAddItem(5, "Go Back", 100, 0)
        pUnit:GossipSendMenu(player)
    end
    if(intid == 10) then
        player:AddItem(41125,2)
        player:AddItem(41126,2)
        player:AddItem(41123,1)
        player:AddItem(41124,1)
        player:AddItem(41127,1)
        pUnit:GossipComplete(player)
    end
    if(intid == 13) then 
        player:LearnSpell(21169)
        player:AddItem(17030,100)
        pUnit:GossipComplete(player)
    end
    if(intid == 258) then
        player:AddItem(32948,5)
        player:AddItem(32947,5)
        player:AddItem(22833,5)
        player:AddItem(22827,5)
        player:AddItem(22835,5)
        player:AddItem(22824,5)
        player:AddItem(32063,5)
        player:AddItem(32067,5)
        player:AddItem(32068,5)
        player:AddItem(32062,5)
        pUnit:GossipComplete(player)
    end
    if(intid == 259) then
        player:AddItem(32947,10)
        player:AddItem(32948,10)
        player:AddItem(31677,10)
        player:AddItem(31676,10)
        player:AddItem(22849,10)
        player:AddItem(22836,10)
        pUnit:GossipComplete(player)
    end
    if(intid == 900) then 
        player:LearnSpell(33081)
        player:LearnSpell(33082)
        player:LearnSpell(33077)
        player:LearnSpell(33079)
        player:LearnSpell(33080)
        player:LearnSpell(33078)
        pUnit:GossipComplete(player)
    end
    if(intid == 100) then
    pUnit:GossipCreateMenu(3544, player, 0)
        pUnit:GossipMenuAddItem(5, "Hordes", 16, 0)
        pUnit:GossipMenuAddItem(5, "Alliance", 15, 0)
        pUnit:GossipMenuAddItem(6, "Black0uT Starting Stuff", 136, 0)
        pUnit:GossipMenuAddItem(8, "Buff Spells", 900, 0)
        pUnit:GossipSendMenu(player)
    end
    end
    
    RegisterUnitGossipEvent(8,1,"blackout_OnGossipTalk") 
    RegisterUnitGossipEvent(8,2,"blackout_OnGossip_Select")
    thanks

    ~Jis

  7. #1087
    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)
    Originally Posted by lasermonkey View Post
    I'm looking for a bit of help, or at least a friendly point in the right direction ... I'm trying to figure out a simple way of making one of my teleport NPC's portable ... I made some progress in the fact that I turned one of them into a non-combat pet ... I just changed his entry numbers to take over the record for the NPC summoned by the item ...

    When I right click the item, the NPC is spawned, according to how I set him up, custom scale and all, but all his options are now gone, as in, when you right click him, it just comes up with the "Hello <name>, how can I help you" gossip text.

    Anyone know what I might be able to do from here ?

    Any help is greatly appreciated, and I'll +Rep as much as I can if someone can help me get any farther with this.
    Well you can just use an item to have the ultimate portability, but if you insist on a non-combat pet, make sure his npcflags include the gossip flag (1) and the entry in the script is still correct.

  8. #1088
    ffdevil's Avatar Member
    Reputation
    13
    Join Date
    Jul 2008
    Posts
    35
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Why cant I extract my maps? I have tried the extractor from the core and one I found to dl, still wont work ... any suggestions or helps????

  9. #1089
    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)
    What seems to be the problem, ffdevil?

  10. #1090
    deflector's Avatar Member
    Reputation
    1
    Join Date
    Feb 2008
    Posts
    20
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Might wanna try to run ad.exe as "run as administrator" if ur using something like windows vista...

  11. #1091
    goplay1's Avatar Member
    Reputation
    6
    Join Date
    Jul 2008
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Okay i was wondering if anyone new of a webpack that works with arcemu?
    not just the registration page but the whole website?

    anyone know of any? any good ones?

  12. #1092
    2dgreengiant's Avatar ★ Elder ★


    Reputation
    1192
    Join Date
    Feb 2007
    Posts
    7,129
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Goplay1 try something like http://www.mmowned.com/forums/emulat...-frontend.html

    edit or:
    http://www.mmowned.com/forums/emulat...ites-here.html

    Some links may be dead tho so don;t ask for new ones.
    If you need me you have my skype, if you don't have my skype then you don't need me.

  13. #1093
    bulletzaredeadly's Avatar Active Member
    Reputation
    24
    Join Date
    Nov 2007
    Posts
    132
    Thanks G/R
    0/1
    Trade Feedback
    6 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have a question. I am trying to make players start with 1000 Gold. I am using ArcEmu core with Why DB. How would I go about doing this. thanks in advance

  14. #1094
    latruwski's Avatar Banned
    Reputation
    647
    Join Date
    Dec 2006
    Posts
    2,456
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bulletzaredeadly View Post
    I have a question. I am trying to make players start with 1000 Gold. I am using ArcEmu core with Why DB. How would I go about doing this. thanks in advance
    I think the easiest would be to create a unique item that is worth 1000g if you sell it and put that in playercreateinfo_items...
    I don't know if arcemu has the option in config files to add gold yet or not... i haven't been into emulators much lately (school)...but my first suggestion will do the trick

    grtz

  15. #1095
    odankra's Avatar Member
    Reputation
    1
    Join Date
    Apr 2008
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi everyone,

    I juste have a little problem with the model changing.

    I have installed the mpq for changin human male into UD male, but when I select a human mal character i just have a wow error... and the game crashes.

    I've heard about an anti-detect programm, but don't now about it.

    Could someone help me ?

    thaks bye advance !

    (ps: sorry for my bad english, this is not my usual language, I speek french )

Similar Threads

  1. [2010] Emulation Expert Questions/Requests/FAQ thread
    By Trle94 in forum World of Warcraft Emulator Servers
    Replies: 4
    Last Post: 07-26-2010, 05:12 AM
  2. [2009] Emulation Expert Questions/Requests/FAQ thread
    By Gastricpenguin in forum World of Warcraft Emulator Servers
    Replies: 33
    Last Post: 04-01-2009, 12:39 AM
  3. Quick Question (Requires Emu Expert)
    By TripZone in forum World of Warcraft Emulator Servers
    Replies: 4
    Last Post: 04-06-2008, 02:58 AM
  4. [Now open] Ascent Help-me Thread. POST QUESTIONS HERE.
    By Equ1N0X in forum World of Warcraft Emulator Servers
    Replies: 0
    Last Post: 01-07-2008, 09:28 AM
  5. Wow Emu server question
    By TripleShank26 in forum World of Warcraft General
    Replies: 2
    Last Post: 07-06-2006, 03:07 PM
All times are GMT -5. The time now is 01:14 PM. 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