|
|
 |
 |
 |
 |
|
 |
 |
|
 |
 |
|
 |
|
Quests::Q&A This is the quest support section |
 |
|
 |

11-28-2010, 12:37 PM
|
 |
Demi-God
|
|
Join Date: Oct 2010
Posts: 1,332
|
|
Corpse summoners in Guild Lobby
Is this summoning quest supposed to be working for the corpse summoners
in the Guild Lobby ? I was testing it out (died to leave a corpse), but it
doesn't seem to acknowledge that I have a corpse.
(Gives me the "The voice booms angrily in your mind, Be gone from this place.
You waste my time!" message.)
sub EVENT_SAY {
my $charid = 0;
my $corpse = 0;
my $charid = $client->CharacterID();
my $x = $npc->GetX();
my $y = $npc->GetY();
my $z = $npc->GetZ();
my $corpse = quest::getplayerburriedcorpsecount($charid);
if($text=~/hail/i) {
$client->Message(4, "The spectral figure stares into your soul with cold eyes, its voice entering your mind. We keep all that has been lost. In times past, nothing be returned once it was mine. Time have changed. The bodies, your [bodies], that were lost to you can now be returned.");
}
if($text=~/bodies/i && $corpse == 0) {
$client->Message(13, "The voice booms angrily in your mind, Be gone from this place. You waste my time!");
}
if($text=~/bodies/i && $corpse > 0) {
quest::summonburriedplayercorpse($charid, $x, $y, $z, 0);
}
}
|
 |
|
 |

11-28-2010, 05:54 PM
|
Sarnak
|
|
Join Date: Jul 2010
Posts: 36
|
|
It works after the bodies have been dead for like 24 hours or something, not sure why. But if you die today, go tomorrow and it will summon your corpse.
|

11-28-2010, 06:18 PM
|
 |
Demi-God
|
|
Join Date: Oct 2010
Posts: 1,332
|
|
That script must be dealing with expired corpses or something.
I'll have to poke around and see if I can fix it somehow.
|

11-28-2010, 10:11 PM
|
Discordant
|
|
Join Date: Jan 2002
Posts: 305
|
|
Quote:
Originally Posted by Huppy
That script must be dealing with expired corpses or something.
I'll have to poke around and see if I can fix it somehow.
|
Yes:
my $corpse = quest::getplayer burriedcorpsecount($charid);
...
quest::summon burriedplayercorpse($charid, $x, $y, $z, 0);
It's summoning ones that get sent to Shadowrest.
|

11-29-2010, 08:47 AM
|
 |
Demi-God
|
|
Join Date: Oct 2010
Posts: 1,332
|
|
Actually, I noticed that is the same script the summoner uses in Shadowrest,
so it makes sense. I figured I might as well change the rule value timer for the
corpse decay to 7 days (like live). But I like the "old school" way of having to
do a corpse run anyway. Its more fun. 
|

04-14-2011, 10:00 AM
|
Hill Giant
|
|
Join Date: Dec 2004
Location: Pittsburgh, PA
Posts: 128
|
|
Guild Lobby Corpse Summoners
I realize this is an old post but I spent time trying to find a work around for the guild summoners and thought someone might be able to use it. If anyone else actually has them working properly please fill me in. Thanks.
I used the veteran aa spell Expedient Recovery with the selfcast. I understand this gives 100 pct exp but when your in the guild lobby and can summon all of your corpse and usually get a 96% rez anyway, it's not that much of a difference. I might spend the time the time to actually accept the soulstones by checking the players level and turn in item, but this is extra work i don't feel like doing right now. I just couldn't find any other way to get them to summon all corpses without giving experience back.
|

04-14-2011, 01:00 PM
|
Sarnak
|
|
Join Date: May 2010
Posts: 39
|
|
There is a quest command to bury corpses to avoid the decay timer/server reboot or whatever is set to send them to shadowrest. This is an example from qinimi, Besana_the_Gravedigger
Code:
sub EVENT_SAY {
$charid = 0;
$corpse = 0;
$charid = $client->CharacterID();
$x = $npc->GetX();
$y = $npc->GetY();
$z = $npc->GetZ();
if ($text=~/hail/i) {
quest::say("I am ... [wish to live again] and I will dig up the body for them.");
quest::buryplayercorpse($charid);
$corpse = quest::getplayerburriedcorpsecount($charid);
}
if($text=~/wish to live again/i && $corpse == 0) {
quest::say("You have no corpse in this zone");
}
if($text=~/wish to live again/i && $corpse > 0) {
quest::say("And so you shall my friend. And so you shall.");
quest::summonburriedplayercorpse($charid, $x, $y, $z, 0);
$corpse = 0;
$charid = 0;
}
}
|

05-13-2011, 05:49 PM
|
Fire Beetle
|
|
Join Date: May 2003
Posts: 7
|
|
Jaekob was correct
I got the corpse summoners in the guild lobby by doing what Jaekob suggested. In the perl scripts A_Priest_of_Luclin and A_Priestess_of_Luclin, place this command: quest::buryplayercorpse($charid);
before this command: $corpse = quest::getplayerburriedcorpsecount($charid);
It burys the player corpse so that it can be summoned.
|
 |
|
 |

11-25-2011, 03:02 PM
|
 |
Demi-God
|
|
Join Date: Nov 2007
Posts: 2,175
|
|
It really does work beautifully. I made a small modification to let the player know a corpse was found.
Code:
sub EVENT_SAY {
my $charid = 0;
my $corpse = 0;
my $charid = $client->CharacterID();
my $x = $npc->GetX();
my $y = $npc->GetY();
my $z = $npc->GetZ();
quest::buryplayercorpse($charid);
my $corpse = quest::getplayerburriedcorpsecount($charid);
if($text=~/hail/i) {
$client->Message(4, "The spectral figure stares into your soul with cold eyes, its voice entering your mind. We keep all that has been lost. In times past, nothing be returned once it was mine. Time have changed. The bodies, your [bodies], that were lost to you can now be returned.");
}
if($text=~/bodies/i && $corpse == 0) {
$client->Message(13, "The voice booms angrily in your mind, Be gone from this place. You waste my time!");
}
if($text=~/bodies/i && $corpse > 0) {
quest::summonburriedplayercorpse($charid, $x, $y, $z, 0);
$client->Message(13, "I have returned your body to this world, please be more careful in Norrath.");
}
}
|
 |
|
 |

03-22-2012, 07:26 PM
|
 |
Dragon
|
|
Join Date: Nov 2008
Location: GA
Posts: 904
|
|
Bumping this old thread because I'm having an issue with this script where the players are getting duplicate corpses. The summoned corpse (1) and the original corpse (2). This is obviously an extremely exploitable bug.
|

03-22-2012, 08:24 PM
|
 |
Demi-God
|
|
Join Date: Nov 2007
Posts: 2,175
|
|
Yep, best bet is to not use it. Very exploitable.
|

04-03-2012, 07:50 PM
|
 |
Demi-God
|
|
Join Date: Nov 2007
Posts: 2,175
|
|
You rock man, you rock.
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -4. The time now is 09:50 AM.
|
|
 |
|
 |
|
|
|
 |
|
 |
|
 |