Hey, I'm running a 2.4.3 ArcEmu server, and for some reason, there isn't a settitle command anywhere. I've checked everything, but nothing is there. If anyone could make some sort of script to set titles for me, that'd be awesome.![]()
Hey, I'm running a 2.4.3 ArcEmu server, and for some reason, there isn't a settitle command anywhere. I've checked everything, but nothing is there. If anyone could make some sort of script to set titles for me, that'd be awesome.![]()
In patch 2.4.3 are no Titles!
...Yes there are. :squint:
you alrdy made a similar thread(http://www.mmowned.com/forums/emulat...e-command.html) a few days ago try look at the answers in that thread instead of making a new thread.
You wont get your answer more quickly if you post in more sections.
You could always use a Lua script to bind a item to give you the title id you type.
Like so
That item will give you the title of the ID you put in the code box.Code:function ItemGossip(item, event, player) if player:IsGm() == true then item:GossipCreateMenu(320, player, 1) item:GossipMenuAddItem(1, "Set a Title", 101, 1) item:GossipMenuAddItem(2, "Nevermind.", 100, 0) item:GossipSendMenu(player) else player:SendBroadcastMessage("You're not a GM") end end function ItemSelect(item, event, player, id, intid, code) if(intid == 101) then player:SetTitle(code) end if(intid == 100) then player:GossipComplete() end end RegisterItemGossipEvent(Itemid, 1, "ItemGossip") RegisterItemGossipEvent(Itemid, 2, "ItemSelect")