PDA

View Full Version : Quick Scripting Question


mByte
04-03-2002, 08:08 AM
I have tried to setup this scritpting and seem to be missing somthing

at the moment i have a spawn "Bone Split" NPCTYPEID 2006 in the DB in zone befallen

I try to hail him and I get this in my cmd screen

Message:Hail, Bone Splint
Error: No Quest File Found For Befallen

here is my script in the befallen.qst file

NPC_SCRIPT 2006{
TRIGGER_TEXT:Hail:{
SAY:Hiya
}
}

I have tried putting the file in all these paths nothing works
c:\befallen.qst
c:\quest\befallen.qst
c:\eqemu\quest\befallen.qst
c:\eq_server\eqemu\quest\befallen.qst
c:\eq_server\quest\befallen.qst
c:\eq_server\befallen.qst

My Files for world.exe, zonent.exe, minilogin are in c:\eq_server\

devn00b
04-03-2002, 08:20 AM
soo close yet sooo far

try
c:\eq_server\questS\befallen.qst

Please note the S on questS

that should do it =)

mByte
04-03-2002, 08:33 AM
god i feel like a noob sometimes

anyways thanks

mByte
04-03-2002, 08:39 AM
blah new problem

It crashes to desktop when I hail the bastage!

devn00b
04-03-2002, 10:42 AM
I had this same problem. I deleted my scipt file took the example one, and tested it with that (amazing it worked) then just edited that file.

I have no idea why that worked. but alas some times the ghetto fixes are the best!

Lyenu X`Arie
04-03-2002, 01:13 PM
Originally posted by mByte
NPC_SCRIPT 2006{
TRIGGER_TEXT:Hail:{
SAY:Hiya
}
}


That should be the following:


NPC_SCRIPT 2006{
TRIGGER_TEXT:Hail:{
SAY:Hiya
}


You just have 1 to many spaggeti brackets =)

strychn
04-03-2002, 04:35 PM
no. he had it right...
should end up with sets of brackets. for each opening one, should be a closing one.