Mrtn, get an updated repack like the new Panex Repack. Your database is just too outdated.
Mrtn, get an updated repack like the new Panex Repack. Your database is just too outdated.
Greetings!
I'm having a small problem with my Ascent 4628 and whydb server. I can log i and most things are working great. My biggest problem is this, quite of a few of the GM commands don't seem to work. I gave my account the az permissions and I get the command not found message for a lot of them.
.learnskill is the one I've had the most problem with.
Any ideas?
Hi anyways my question is : is there anyway that i can make a zeppilin fly my own way like havig a zeppilin fly to some random place
Bambua, the commands has been changed alot, and alot of the commands that I bet you got a problem with is the ones in the .char subcommands
Type .char and see the commands, for example learn
.char learn <id>
Hey guys, when I try making custom NPC's I add in the model ID i get from thottbot but when i spawn it it's a totally different model then whats in my sql,
e.g I set my malemodelid as 20460 for chief engineer Gork'lonn but when i try and spawn him he shows as a dranei, everything else works fine, name scale and proto.
Tested 20460 ingame, I went to a undead female display
The displayid for the chief is 19639
I have panex repack but it has no venders!!!can i please get a venders that work?!?!?! i alrdy tried the ones with the season 4 and stuff... it wouldnt work :
Oh, how do you find the modelid can you thottbot it?
The method I use, is by wowhead.
Go to the NPC, rightclick on the page and open up the source of the page. Now take and search for "display" in the source, there you got it =P
Awsome thanks +rep
Hey guys again, I am wondering what you can use for the naming of your functions for example:
function phase_1(pUnit, Event) works fine but
function boss_shadowboltvolley(pUnit, Event) doesn't =/
any help?
The name doesn't matter, just it's the same as the register
uber_shadowboldvolley
would work =P
I dunno, just doesn't seem to work for me, can you write a simple function and show me?
Btw how do you do a aoe effect on the ground? like charred earth from nightbane?
I have 2 scripts, both are in sm one armory one cath.
the scripts are called kexx.lua and kefia.lua
kexx works fine, kifea seems to use the same script as kexx though ( same lines abilitys etc)
kexx uses phase_1 phase_2 etc
kifea uses kifea_start kifea_85
Heres 2 functions:
Kexx:
function phase_1(pUnit, Event)
if pUnit:GetHealthPct() < 99 then
pUnit:RemoveEvents();
pUnit:SendChatMessage(14, 0, "Intruders! You will die!")
pUnit:RegisterEvent("phase_2",1000, 0)
end
end
kifea:
function kifea_start(pUnit, Event)
if pUnit:GetHealthPct() < 85 then
pUnit:RemoveEvents();
pUnit:SendChatMessage(14, 0, "Welcome to the last minutes of your lifes!")
pUnit:FullCastSpellOnTarget(40932, pUnit:GetRandomPlayer(0))
pUnit:RegisterEvent("kifea_70",1000, 0)
end
end
would anything confuse the scripts?
Last edited by uberhak3r; 06-28-2008 at 07:51 PM.