PDA

View Full Version : Adding Quest Zones question


Sakrateri
06-27-2004, 03:56 AM
I added the zone Abysmal to my datbase and tehn added a abysmal folder to my quest folders and when i add quests for abysmal mobs in the abysmal folder they dont work , anyway i can get them to work that anyone knows of ?

animepimp
06-27-2004, 07:23 AM
Well since we don't have enough info about it we don't really know what you need to do to get them to work. What does the output of zone.exe say when you zone into that zone and it loads the quests?

Sakrateri
06-27-2004, 09:59 AM
Ooops sorry , here it is , and thanks .

[Status] CURRENT_ZONE_VERSION: EQEMu 0.5.7-DR6
[Status] Loading Variables
[Status] Loading zone names
[Status] Loading items
[Status] EMuShareMem loaded
[Status] Loading npcs
[Status] Loading npc faction lists
[Status] Loading loot tables
[Status] Loading doors
[Status] Loading guilds
[Status] Loading factions
[Status] Loading corpse timers
[Status] Loading what ever is left
[Status] Loading commands
[Status] 167 commands loaded
[Status] Loading embedded perl
[Status] Loading perlemb plugins.
[Status] Entering sleep mode
Connected to worldserver: 192.168.1.100:9000
[Status] Weather should change in 2078 seconds
Init: Loading zone lists, zone state or spawn list, player corpses
WARNING: No Zonepoints for this zone in database found
, timezone data - Done. ZoneID = 279; Time Offset = 0
Couldn't find/read ./cfg/abysmal.cfg. (returning -1)
Couldn't find/read ./cfg/abysmal.cfg. (returning -1)
Corrupt (or nonexistant) zhdr file ./cfg/abysmal.cfg -- fread count = -1 (should
be 588)
Using default zone header data...
[Status] Loading Objects from DB...
[Status] Loading Ground Spawns from DB...
[Status] Loading doors for abysmal ...
[Status] Done loading doors for abysmal ...
[Status] Zone Bootup: abysmal (279)
[Status] WARNING: error compiling quest file quests/abysmal/281071.pl: Perl runt
ime error: Missing right curly or square bracket at (eval 116) line 6, at end of
line
syntax error at (eval 116) line 6, at EOF
(reverting to default questfile)
[Status] WARNING: error compiling quest file quests/abysmal/281070.pl: Perl runt
ime error: Missing right curly or square bracket at (eval 139) line 6, at end of
line
syntax error at (eval 139) line 6, at EOF
(reverting to default questfile)
[Status] WARNING: error compiling quest file quests/abysmal/281069.pl: Perl runt
ime error: Missing right curly or square bracket at (eval 162) line 6, at end of
line
syntax error at (eval 162) line 6, at EOF
(reverting to default questfile)
[Status] WARNING: error compiling quest file quests/abysmal/281068.pl: Perl runt
ime error: Missing right curly or square bracket at (eval 185) line 6, at end of
line
syntax error at (eval 185) line 6, at EOF
(reverting to default questfile)
[Status] WARNING: error compiling quest file quests/abysmal/281060.pl: Perl runt
ime error: Missing right curly or square bracket at (eval 362) line 6, at end of
line
syntax error at (eval 362) line 6, at EOF
(reverting to default questfile)
[Status] WARNING: error compiling quest file quests/abysmal/281059.pl: Perl runt
ime error: Missing right curly or square bracket at (eval 385) line 6, at end of
line
syntax error at (eval 385) line 6, at EOF
(reverting to default questfile)
[Status] 87996 New client from ip:192.168.1.1 port:1050
[Error] HandlePacket() Opcode error: Unexpected packet during CLIENT_CONNECTING:
opcode: 0x02f5, size: 4
Unknown opcode: 0x01e5 size:8 Client:Tunarus
0: 0A 00 00 00 CB 9A C0 75 | .......u
Message: Hail, Tarmoth Wabot
Zoning to safe coords: gfaydark (54)
[Status] Zoning 'Tunarus' to: gfaydark (54) x=10.000000, y=-20.000000, z=0.00000
0
Client disconnected (cs=d): Tunarus
Dropping client: Process=false, ip=192.168.1.1, port=1050
[Status] Zone Shutdown: abysmal (279)

Tertiary
06-27-2004, 10:04 AM
Judging by the errors, you have some missing brackets in your quest files. Post one of the .pl files here.

animepimp
06-27-2004, 10:15 AM
Yeah, its telling you exactly why your quests don't work, you didn't write themm correctly. Usually when the server tells you an error message, tahts the problem.

Sakrateri
06-27-2004, 10:30 AM
Ok , just figured out and this is strange , here is a regular quest file that works in all the other zones for me


sub EVENT_SAY {
if($text=~/Hail/i){
quest::say("Greetings. $name. Be gone I have much of nothing to do today. You bother me."); }
}
#END of FILE Zone:gfaydark ID:54092 -- Guard_Orcflayer

and of course I save it as the mobs ID number , Well i just found out i have to save the Abysmal Sea ones like this for them to work

sub EVENT_SAY {
if($text=~/Hail/i){
quest::say("Hello $name. The eyes of Rhosha watch over all."); }
}

I cant end them like the others only like this and save them as the Mobs ID and they work ,...........weird