Go Back   EQEmulator Home > EQEmulator Forums > Search Forums

Showing results 1 to 25 of 39
Search took 0.00 seconds.
Search: Posts Made By: ylosh
Forum: Quests::Q&A 09-05-2006, 11:50 AM
Replies: 1
Views: 2,447
Posted By ylosh
for this situation it's easier to set up npcs to...

for this situation it's easier to set up npcs to attack other npcs based on faction then have a .pl file for every single guard/npc you want to have attack another npc when it gets inside aggro...
Forum: Quests::Q&A 09-03-2006, 03:29 PM
Replies: 4
Views: 2,665
Posted By ylosh
added the sub to event item in avatar of water...

added the sub to event item in avatar of water .pl file. should sync up in a little.

the return items plugin doesen't need to go in an else statement.

just ran through shmendrik and natasha...
Forum: Quests::Submissions 09-03-2006, 12:40 PM
Replies: 10
Views: 8,214
Posted By ylosh
thats just a list of what's been verified as...

thats just a list of what's been verified as being completed. we try to get exact dialogue for most everything but some files aren't correct. i kind of gave up on the druid epic when i couldn't find...
Forum: Quests::Submissions 09-02-2006, 06:27 PM
Replies: 10
Views: 8,214
Posted By ylosh
the PEQ quest db already has 8 verified epic...

the PEQ quest db already has 8 verified epic quests, including the ranger and cleric, for download.

muuss wrote the cleric epic and submitted it and i wrote the ranger files. maybe you could...
Forum: Quests::Q&A 08-30-2006, 05:41 PM
Replies: 7
Views: 3,105
Posted By ylosh
heh, thanks fnw..

heh, thanks fnw..
Forum: Quests::Q&A 08-29-2006, 07:50 PM
Replies: 7
Views: 3,105
Posted By ylosh
no, you can only have one event_say in the file. ...

no, you can only have one event_say in the file.

you can set a temporary variable to have the npc summon the item when whatever key item is handed in..


sub EVENT_SPAWN {
$variable = 0;
}...
Forum: Quests::Q&A 08-29-2006, 01:11 PM
Replies: 7
Views: 3,105
Posted By ylosh
sub EVENT_SAY { if($text=~/.*/i) { ...

sub EVENT_SAY {
if($text=~/.*/i) {
quest::summonitem($text);
}
}
Forum: Quests::Q&A 08-20-2006, 07:31 PM
Replies: 4
Views: 2,879
Posted By ylosh
elsif is the cheese for perl..

elsif is the cheese for perl..
Forum: Quests::Q&A 08-18-2006, 12:52 PM
Replies: 2
Views: 3,307
Posted By ylosh
you could try using...

you could try using quest::signalwith(npcid,signalid,delay_in_ms); and see if that gives you the same type of problems.

if you ever wanted to send the same npc multiple signals from different...
Forum: Quests::Submissions 08-17-2006, 01:44 PM
Replies: 11
Views: 10,328
Posted By ylosh
it's easier to do something like this than type...

it's easier to do something like this than type in the same dialogue over and over for multiple hand ins. you also used a lot of quest::say(); instead of quest::emote(); it's a good idea to use the...
Forum: Quests::Q&A 08-13-2006, 04:40 PM
Replies: 9
Views: 3,599
Posted By ylosh
quest::selfcast(spellid); don't need $userid

quest::selfcast(spellid); don't need $userid
Forum: Quests::Q&A 08-13-2006, 12:33 PM
Replies: 9
Views: 3,599
Posted By ylosh
npcs will not cast group buff spells like koadics...

npcs will not cast group buff spells like koadics on players right now with castspell. detrimental or single target buffs work fine. castspell is also (spellid,$userid)

you can use...
Forum: Quests::Q&A 08-13-2006, 08:02 AM
Replies: 25
Views: 8,190
Posted By ylosh
don't need to restart the server, #reloadpl in...

don't need to restart the server, #reloadpl in the zone after you've made changes to the .pl file.
Forum: Quests::Q&A 08-04-2006, 04:57 PM
Replies: 4
Views: 2,935
Posted By ylosh
maybe it's how you copied and pasted the .pl file...

maybe it's how you copied and pasted the .pl file but in all the reward dialogue you have a ; with no preceding ") and there is an extra } in event_item. would be better to use the item handin...
Forum: Development::Database/World Building 07-27-2006, 03:02 AM
Replies: 4
Views: 2,955
Posted By ylosh
there is still a free 30 days (until july 28th)...

there is still a free 30 days (until july 28th) for live servers that sony is giving to everyone with the intent to try the progressions servers. now would be a great time to go back to the old world...
Forum: Quests::Q&A 07-26-2006, 06:54 AM
Replies: 34
Views: 13,522
Posted By ylosh
that's exactly what quest::setglobal() does with...

that's exactly what quest::setglobal() does with the different option sets.


+--------+---------+---------+----------+
| value...
Forum: Quests::Q&A 06-06-2006, 03:22 PM
Replies: 25
Views: 8,190
Posted By ylosh
sub EVENT_SAY { if ($text=~/hail/i && $flyer...

sub EVENT_SAY {
if ($text=~/hail/i && $flyer == 1) {
quest::say("May you travel with the Fives' blessing, $name.");
}
if ($flyer == 0) {
if ($text=~/Hail/i) {
quest::say("Ahh,...
Forum: Quests::Q&A 05-30-2006, 06:55 PM
Replies: 25
Views: 8,190
Posted By ylosh
update npc_types set qglobal=1 where...

update npc_types set qglobal=1 where id=(ambassador dumont npcid);
quick example, maybe it'll help you.

sub EVENT_SAY {
if ($text=~/hail/i) {
if ($monkey == 1) {
...
Forum: Quests::Q&A 05-28-2006, 11:58 PM
Replies: 25
Views: 8,190
Posted By ylosh
use quest::setglobal instead of targlobal. ...

use quest::setglobal instead of targlobal.

set the qglobal field in npc_types to 1 if you haven't already to enable quest globals for your chosen npc. target the npc and use #showstats or...
Forum: Support::General Support 05-26-2006, 01:48 PM
Replies: 11
Views: 5,265
Posted By ylosh
hollissa - here is the plugin FNW created for...

hollissa - here is the plugin FNW created for class gm's to take tomes and train the players. copy this into a file called guildmasters.pl and place this into your plugins folder.


...
Forum: Quests::Q&A 05-11-2006, 11:22 PM
Replies: 12
Views: 4,203
Posted By ylosh
you're more than welcome to submit it to the PEQ...

you're more than welcome to submit it to the PEQ server.

you can post it to the PEQ general quest forum at http://www.projecteq.net/phpBB2/viewforum.php?f=27

if you're interested in helping...
Forum: Support::Windows Servers 05-11-2006, 11:11 PM
Replies: 12
Views: 2,898
Posted By ylosh
change the item id #'s to what you want to use...

change the item id #'s to what you want to use and change the level check to whatever you wanted. all i saw was <


sub EVENT_SAY {
if ($text=~/hail/i) {
if ($class eq "Bard") {
...
Forum: Quests::Q&A 05-11-2006, 05:42 PM
Replies: 12
Views: 4,203
Posted By ylosh
for npc names that have a ` in them use a - in...

for npc names that have a ` in them use a - in its place.

part of the ranger epic you hand an item to Giz_X`Tin. you'd only need to rename the .pl file to Giz_X-Tin.pl for it to work.

this...
Forum: Support::General Support 05-10-2006, 02:04 AM
Replies: 6
Views: 2,735
Posted By ylosh
that'd be great.. i finally got around to locking...

that'd be great.. i finally got around to locking the door outside grieg's teleport pad. i hadn't locked jaled dar's door yet because we hadn't finished the alternate key quests (vaniki, neb,...
Forum: Support::Windows Servers 05-05-2006, 10:32 PM
Replies: 3
Views: 2,277
Posted By ylosh
delete from spawn2 where...

delete from spawn2 where zone="greatdivide";
Showing results 1 to 25 of 39

 
Forum Jump
   

All times are GMT -4. The time now is 12:10 PM.


 

Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3