PDA

View Full Version : Looking for a spellscriber


Whoopee
10-11-2009, 01:16 PM
Is the spellscribe built in with the current build, or is it a 3rd party feature? I have looked everywhere to find it, if someone could show where to enable, or get the source from that would be great thanks.

nightsta69
10-11-2009, 01:30 PM
don't think there is an NPC spell scriber in the PEQ DB, you'll have to make it by hand, search around on the forums. I believe there might be a custom spell scriber in the quest::custom areas.

Shin Noir
10-11-2009, 01:35 PM
The search button is your friend: I just typed "spell scribe"
http://www.eqemulator.net/forums/search.php?searchid=861840

A few clicks later, you would have found http://www.eqemulator.net/forums/showthread.php?t=25820

This is a custom feature involving an NPC, so that would be categorized as a "Quest" script. Not really something that involves the PEQ DB, unless you grab the PEQ Quests, and even then, PEQ is legit, and spell scribers aren't a legit feature.

More about quests here: http://www.eqemulator.net/wiki/wikka.php?wakka=QuestTutorial
Other wikki entries around too.

Whoopee
10-11-2009, 01:38 PM
I did use the the search button, I wasn't looking for info on how to make a spell scribe, but one that was already made, which I did not see in the list.

bbgunz
10-17-2009, 10:04 PM
what i use on my lan test box


#NPC Elminster scribes player spells and increases them to level 65
#
#
#
sub EVENT_SAY{
if ($ulevel <=64){
if ($text =~/hail/i){
quest::say("Hello adventurer $uname. I have travelled far and my magic is great. Would you like me to help you [level] up?");
}
if ($text =~/level/i){
quest::say("Prepare to feel yourself burn with power!");
quest::level(65);
quest::scribespells(65,60);
}
}
else{
quest::say("You are a high level already fool!. However If you want to be leveled I can show you how its done!?");
}
}