View Full Version : luclin portal
plumes
09-27-2006, 12:40 AM
hello everyone,
i have updated my server to last version of eqemu ( db updated too ) and i have used the luclin release.
all seems good, but the npc ( nexus scion ) dont teleport me to luclin. AA are ok now with the changelog update .
another thing, i have tried the new tutorial ( the one with mysql5). the server start, i can log client on it but i don t see the server. i remember than i have this problem already with a no titanium client but now i have titanium....
i m not a strong user of mysql and the like and start with a pack 3.52 server. all works if i update from this pack ...maybe my problem with mysql 5 is the same...
Plumes
John Adams
09-27-2006, 05:29 PM
I am fairly certain the nexus scions are missing their quest (pl) files. Check the /eqemu/quests/(zonename) folder for the scion, or the default.pl. Pretty sure they are not written.
You may need to write a script for the scion that does a quest::movepc() for now.
plumes
09-27-2006, 06:45 PM
hello John,
the scripts exist but don't see move command in it. this is the script:
sub EVENT_SAY {
if ($text=~/Hail/i){quest::say("Hello $name . I do not have much time to chat. I must concentrate on the portal that is due to open soon. If you wish to [journey to Luclin], tell me so."); }
if ($text=~/journey to Luclin/i){quest::say("Very well.");
quest::castspell($userid,2935); }
}
#END of FILE Zone:gfaydark ID:13060 -- Nexus_Scion
Maybe i need to add your move command, i will check if i found location of the nexus.
Thanks anyways
Plumes
Ps the nexus.pl in velius is better ( give the item) but no teleport ...:(
the peq team speak about cvs soft but i can't get it
Aramid
09-28-2006, 01:44 AM
This is what you want....
sub EVENT_SAY {
if ($text=~/Hail/i){
quest::say("Hello $name . I do not have much time to chat. I must concentrate on the portal that is due to open soon. If you wish to [journey to Luclin], tell me so.");
}
if ($text=~/journey to Luclin/i){
quest::say("Very well.");
quest::selfcast(2734);
}
}
The above will port you to the Nexus....
John Adams
09-28-2006, 01:58 AM
Aramid is correct, too. The command quest::movepc(zoneid,x,y,z); in your script will also relocate you. I have seen problems just getting NPCs to respond to Hails unless I am standing on top of them. Check the pl files for those who hand you a shard, because that is the part that's likely not setup yet. Once you have the shard, great. But if there is no already-running "signal" for the hidden spires NPC to cast an AE teleport, it won't work - which is why the work-around for now is to have Nexus Scions behave much like one-way Translocators.
Which is another option. Go find the translocator in Butcherblock, see how they do it. I only had to tweak some x,y,z to make them work better.
plumes
10-02-2006, 12:39 AM
ok it s good faydwer's portal works
seems no portal was configured in the last data base i get.
i will check all link to know number needed to selfcast.
Thanks you two anyways
Plumes
vBulletin® v3.8.11, Copyright ©2000-2025, vBulletin Solutions Inc.