-
Re: [Release][Daily] Ascent, Moon++, LUA++, ABD and Extra's [4477,364,229,110][29-04-
So my computer crashed yesterday, so i'm back now.
i know about the spirit healers and was working on fixing it...
-
Re: [Release][Daily] Ascent, Moon++, LUA++, ABD and Extra's [4477,364,229,110][29-04-
do you want the script? you can add it in gissip
-
Re: [Release][Daily] Ascent, Moon++, LUA++, ABD and Extra's [4477,364,229,110][29-04-
yes please, u mean the spirit healers and stuff fixed?
that would be great...
got a holiday in my country Queen's day so havnt got much time today lol
-
Re: [Release][Daily] Ascent, Moon++, LUA++, ABD and Extra's [4477,364,229,110][29-04-
Hi, VizualG, happy to see you around again :)
Look, i think there's a bug in last server releases, as stated here:
http://forum.ragezone.com/f433/help-...finish-393383/
Just create a new character (for example human), go to first quest (speak with somebody), and you cannot complete quest: big money required to complete quest.
I tried with NCDB23 & ABD118 databases, and got the same problem
Please, may you have a look?
Thankz, and keep on your good work! :)
-
Re: [Release][Daily] Ascent, Moon++, LUA++, ABD and Extra's [4477,364,229,110][29-04-
ok, i only have time to test this stuff from tomorrow.
i have to go to amsterdam when i finish my release...
people are waiting there for me to go party
-
Re: [Release][Daily] Ascent, Moon++, LUA++, ABD and Extra's [4477,364,229,110][29-04-
new ABD posted...
new release comming...
-
Re: [Release][Daily] Ascent, Moon++, LUA++, ABD and Extra's [4477,364,229,110][29-04-
Add this to your gossip or you can include it in any dll, it just have to load, all spirit healers will have the menu with revive :)
Code:
#include "X:\ascent\surse\src\ascent-world\StdAfx.h"
#include "Setup.h"
#define SPIRIT_HEALER 6491
class SCRIPT_DECL spirithealer : public GossipScript
{
public:
void GossipHello(Object * pObject, Player* Plr, bool AutoSend);
void GossipSelectOption(Object * pObject, Player* Plr, uint32 Id, uint32 IntId, const char * Code);
void GossipEnd(Object * pObject, Player* Plr);
void Destroy()
{
delete this;
}
};
void spirithealer::GossipHello(Object * pObject, Player* Plr, bool AutoSend)
{
GossipMenu *Menu;
objmgr.CreateGossipMenuForPlayer(&Menu, pObject->GetGUID(), 1, Plr);
Menu->AddItem(0, "Revive me plss!!!", 100);
if(AutoSend)
Menu->SendTo(Plr);
}
void spirithealer::GossipSelectOption(Object * pObject, Player* Plr, uint32 Id, uint32 IntId, const char * Code)
{
GossipMenu * Menu;
switch(IntId)
{
case 0: // Return to start
GossipHello(pObject, Plr, true);
break;
// Level 10
case 100: // Strength
{
Plr->BroadcastMessage("You have been blessed!" );
Plr->ResurrectPlayer();
Plr->CastSpell(Plr, 15007, 0);
}
break;
case 99: //main menu
{
objmgr.CreateGossipMenuForPlayer(&Menu, pObject->GetGUID(), 1, Plr);
Menu->AddItem(0, "Revive me plss!!!", 100);
Menu->SendTo(Plr);
}
}
}
void spirithealer::GossipEnd(Object * pObject, Player* Plr)
{
GossipScript::GossipEnd(pObject, Plr);
}
void Setupspirithealer(ScriptMgr * mgr)
{
GossipScript * gs = (GossipScript*) new spirithealer();
mgr->register_gossip_script(6491,gs);
}
-
Re: [Release][Daily] Ascent, Moon++, LUA++, ABD and Extra's [4477,364,229,110][29-04-
-
Re: [Release][Daily] Ascent, Moon++, LUA++, ABD and Extra's [4477,364,229,110][29-04-
thnx a lot curcubeu...
gonna add this now and post the new release in a few minutes...
then i can drink till i drop... lol
-
Re: [Release][Daily] Ascent, Moon++, LUA++, ABD and Extra's [4477,364,229,110][29-04-
you can comment
Plr->CastSpell(Plr, 15007, 0);
if you don't want resurrection sickness to be added to the player :D
and also first line
#include "X:\ascent\surse\src\ascent-world\StdAfx.h"
make it to match your StdAfx.h path :D i bet you knew that :)
-
Re: [Release][Daily] Ascent, Moon++, LUA++, ABD and Extra's [4477,364,229,110][29-04-
for the quests bug you must run some sql fixes in the world database, in my latest release you'll find all database updates, in sql folder
-
Re: [Release][Daily] Ascent, Moon++, LUA++, ABD and Extra's [4477,364,229,110][29-04-
yeah thnx,
woke up not that long ago so over looked it and got the nice compile error.
just when i fixed it i saw youre post lol
-
Re: [Release][Daily] Ascent, Moon++, LUA++, ABD and Extra's [4477,364,229,125][30-04-
so i found some nice stuff in the core to set if u use X64 windows...
gonna compile and test these settings.
let me know if anyone is interested in a x64 release...
-
Re: [Release][Daily] Ascent, Moon++, LUA++, ABD and Extra's [4512,368,235,125][30-04-
-
Re: [Release][Daily] Ascent, Moon++, LUA++, ABD and Extra's [4512,368,235,125][30-04-
VizualG, Do you know what I should do if the trainers.. When i try talking to them they say " Bring me back to life. " as one of the options only.. So I cannot train anything.. I am using the Revision 4477 , Please assist?
-
Re: [Release][Daily] Ascent, Moon++, LUA++, ABD and Extra's [4512,368,235,125][30-04-
yeah the NPC flags changed so u need an SQL fix for it to work.
I'm installing my server again (computer crashed)
and gonna look for bugs and fixes tomorow
try this for the trainer/spirit healer:
Code:
UPDATE creature_proto SET npcflags=npcflags & ~16384 | 64 WHERE npcflags & 16384;
UPDATE creature_proto SET npcflags=npcflags & ~32768 | 16384 WHERE npcflags & 32768;
found this on ascentemu forum....
-
Re: [Release][Daily] Ascent, Moon++, LUA++, ABD and Extra's [4512,368,235,125][30-04-
Quote:
Originally Posted by
VizualG
yeah the NPC flags changed so u need an SQL fix for it to work.
I'm installing my server again (computer crashed)
and gonna look for bugs and fixes tomorow
try this for the trainer/spirit healer:
Code:
UPDATE creature_proto SET npcflags=npcflags & ~16384 | 64 WHERE npcflags & 16384;
UPDATE creature_proto SET npcflags=npcflags & ~32768 | 16384 WHERE npcflags & 32768;
found this on ascentemu forum....
I'm kinda noob on fixing with SQL and shit.. But.. what do i do with this
UPDATE creature_proto SET npcflags=npcflags & ~16384 | 64 WHERE npcflags & 16384;
UPDATE creature_proto SET npcflags=npcflags & ~32768 | 16384 WHERE npcflags & 32768
could you tell me exactly how it works? Or could you possibly make an .SQL file for trainer fix? >_>
-
Re: [Release][Daily] Ascent, Moon++, LUA++, ABD and Extra's [4512,368,235,125][30-04-
just make a new text document, put those 2 lines in it
UPDATE creature_proto SET npcflags=npcflags & ~16384 | 64 WHERE npcflags & 16384;
UPDATE creature_proto SET npcflags=npcflags & ~32768 | 16384 WHERE npcflags & 32768;
save it as fix.sql and run it in your database :D
-
Re: [Release][Daily] Ascent, Moon++, LUA++, ABD and Extra's [4512,368,235,125][30-04-
Quote:
Originally Posted by
curcubeu
just make a new text document, put those 2 lines in it
UPDATE creature_proto SET npcflags=npcflags & ~16384 | 64 WHERE npcflags & 16384;
UPDATE creature_proto SET npcflags=npcflags & ~32768 | 16384 WHERE npcflags & 32768;
save it as fix.sql and run it in your database :D
oh... Hope it works! Thanks Curcubeu!
-
Re: [Release][Daily] Ascent, Moon++, LUA++, ABD and Extra's [4512,368,235,125][30-04-
yes thats the way to do it, thnx
i forgot to mention that lol
-
Re: [Release][Daily] Ascent, Moon++, LUA++, ABD and Extra's [4512,368,235,125][30-04-
ooh yeah curcubeu:
i tested the spirit healer script... works thnx
but the rexx sickness spell is a little off, it gives rezz sickness with 0seconds left and keeps blinking at 0sec. maybe i did something wrong dont know...
or the spell is off, it has to be 10min
-
Re: [Release][Daily] Ascent, Moon++, LUA++, ABD and Extra's [4512,368,235,125][30-04-
just wait 10 minutes, on my revision it's gone after 10 minutes, if not search the spell id for res sic and add it instead of that 15007, i think that's the aura id :( i made that script in 10 minutes and didn't had time to test everything
-
Re: [Release][Daily] Ascent, Moon++, LUA++, ABD and Extra's [4512,368,235,125][30-04-
Tested Ascent Trunk4.4 rev4512, Moon++ rev368, LUA++ rev235 with ABD rev125 and
still this dialog appears with profession trainers:
"Hey Admin, how can I help you?"
* Bring me back to life.
Goodbye.
Other profession trainers doesn't have dialog when u right-click them.
Please help.
Spirit Healer now works.:sq_yellow
-
Re: [Release][Daily] Ascent, Moon++, LUA++, ABD and Extra's [4512,368,235,125][30-04-
-
Re: [Release][Daily] Ascent, Moon++, LUA++, ABD and Extra's [4512,368,235,125][30-04-
i also want to make a script for missing spells, if any1 knows the missing spells for each race and the level that spell require(gold too if you want me to add a price) please post and i'll share the script