|
|
 |
 |
 |
 |
|
 |
 |
|
 |
 |
|
 |
|
Support::Windows Servers Support forum for Windows EQEMu users. |
 |
|
 |

12-01-2013, 02:09 PM
|
Hill Giant
|
|
Join Date: Nov 2013
Location: Eastern US
Posts: 120
|
|
Here are the only errors that were reported in any of the logs.
---------------------------------------------
[11.30. - 22:08:09] Starting Log: logs/eqemu_error_zone_3992.log
[11.30. - 22:08:09] Path File ./Maps/steamfontmts.path not found.
[11.30. - 22:11:08] Path File ./Maps/steamfontmts.path not found.
[11.30. - 22:13:43] Path File ./Maps/steamfontmts.path not found.
[11.30. - 22:17:58] Path File ./Maps/gfaydark.path not found.
[11.30. - 22:19:25] Path File ./Maps/guildlobby.path not found.
[11.30. - 22:21:10] Path File ./Maps/ecommons.path not found.
[11.30. - 22:24:23] Path File ./Maps/guildhall.path not found.
---------------------------------------------
[11.30. - 22:09:26] Starting Log: logs/eqemu_error_zone_3184.log
[11.30. - 22:09:26] Path File ./Maps/dragonscale.path not found.
[11.30. - 22:11:41] Path File ./Maps/lopingplains.path not found.
[11.30. - 22:14:01] Path File ./Maps/lopingplains.path not found.
[11.30. - 22:17:17] Path File ./Maps/lfaydark.path not found.
[11.30. - 22:19:45] Path File ./Maps/guildhall.path not found.
[11.30. - 22:22:29] Path File ./Maps/freportw.path not found.
[11.30. - 22:24:02] Path File ./Maps/guildlobby.path not found.
[11.30. - 22:26:42] Path File ./Maps/iceclad.path not found.
I have redownloaded and redone the server a few times already, and I have not found these .path files in any folder or subfolder. I don't know if these missing files would cause quest npc's to intermittently answer hails, or seeing incorrect graphics for particular mobs, or having an incorrect image in the guild hall or not.
Thank you MarioMario. I tried it with my 250 flagged account and the guild portal still didn't work. I can only go to pre pop zones. I can set the teleporter to another zone like dragonscale hills, but when I step into the porter nothing happens. Again that is with a 250 flagged account, not gm flagged and xp and level set to 65. I found the gm commands and leveled the character up to 65, without being gm flagged, just to try the porter as a level 65 toon.
|
 |
|
 |
 |
|
 |

12-01-2013, 08:20 PM
|
Hill Giant
|
|
Join Date: Jul 2004
Posts: 143
|
|
Inside of the guild hall quest folder, the player.pl is where your problem lies. This is where the answer for the pop up occurs.
Code:
sub EVENT_POPUPRESPONSE {
if ($popupid == 666) { #hateplaneb
quest::movepc(186,-393,656,3);
}
if ($popupid == 674) { #airplane
quest::movepc(71,539,1384,-664);
}
if ($popupid == 15891) { #dragonscale
#quest::movepc(442,-1954,3916,19);
}
if ($popupid == 2708) { #northkarana
quest::movepc(13,1209,-3685,-5);
}
if ($popupid == 4176) { #ecommons
quest::movepc(22,-140,-1520,3);
}
if ($popupid == 534) { #lavastorm
quest::movepc(27,460,460,-86);
}
if ($popupid == 2707) { #tox
quest::movepc(38,-916,-1510,-33);
}
if ($popupid == 2706) { #gfaydark
quest::movepc(54,-441,-2023,4);
}
if ($popupid == 2709) { #dreadlands
quest::movepc(86,9658,3047,1052);
}
if ($popupid == 2284) { #iceclad
quest::movepc(110,385,5321,-17);
}
if ($popupid == 2031) { #coboltscar
quest::movepc(117,-1634,-1065,299);
}
if ($popupid == 3615) { #twilight
quest::movepc(170,-1028,1338,39);
}
if ($popupid == 3794) { #stonebrunt
quest::movepc(100,673,-4531,0);
}
if ($popupid == 6180) { #wallofslaughter
#quest::movepc(300,-943,13,130);
}
if ($popupid == 5733) { #barindu
quest::movepc(283,209,-515,-119);
}
if ($popupid == 8237) { #eastkorlach
#quest::movepc(362,-750,-1002,48);
}
if ($popupid == 8967) { #arcstone
#quest::movepc(369,1630,-279,5);
}
if ($popupid == 999) { #mesa
#quest::movepc(397,-85,-2050,19);
}
if ($popupid == 1000) { #guild banner
#not implemented yet
}
if ($popupid == 416) { #kattacastrum
#quest::movepc(416,-2,-425,-19);
}
if ($popupid == 20543) { #potimea
quest::movepc(219,0,110,8);
}
if ($popupid == 21986) { #brellsrest
#quest::movepc(480,-23,-619,36);
}
}
The # before some of those quest::movepc means that line is commented out so perl wont execute those particular lines. This is why the porter wont send you to those zones.
|
 |
|
 |
 |
|
 |

12-02-2013, 09:13 AM
|
Hill Giant
|
|
Join Date: Nov 2013
Location: Eastern US
Posts: 120
|
|
Quote:
Originally Posted by Mariomario
Inside of the guild hall quest folder, the player.pl is where your problem lies. This is where the answer for the pop up occurs.
Code:
sub EVENT_POPUPRESPONSE {
if ($popupid == 666) { #hateplaneb
quest::movepc(186,-393,656,3);
}
if ($popupid == 674) { #airplane
quest::movepc(71,539,1384,-664);
}
if ($popupid == 15891) { #dragonscale
#quest::movepc(442,-1954,3916,19);
}
if ($popupid == 2708) { #northkarana
quest::movepc(13,1209,-3685,-5);
}
if ($popupid == 4176) { #ecommons
quest::movepc(22,-140,-1520,3);
}
if ($popupid == 534) { #lavastorm
quest::movepc(27,460,460,-86);
}
if ($popupid == 2707) { #tox
quest::movepc(38,-916,-1510,-33);
}
if ($popupid == 2706) { #gfaydark
quest::movepc(54,-441,-2023,4);
}
if ($popupid == 2709) { #dreadlands
quest::movepc(86,9658,3047,1052);
}
if ($popupid == 2284) { #iceclad
quest::movepc(110,385,5321,-17);
}
if ($popupid == 2031) { #coboltscar
quest::movepc(117,-1634,-1065,299);
}
if ($popupid == 3615) { #twilight
quest::movepc(170,-1028,1338,39);
}
if ($popupid == 3794) { #stonebrunt
quest::movepc(100,673,-4531,0);
}
if ($popupid == 6180) { #wallofslaughter
#quest::movepc(300,-943,13,130);
}
if ($popupid == 5733) { #barindu
quest::movepc(283,209,-515,-119);
}
if ($popupid == 8237) { #eastkorlach
#quest::movepc(362,-750,-1002,48);
}
if ($popupid == 8967) { #arcstone
#quest::movepc(369,1630,-279,5);
}
if ($popupid == 999) { #mesa
#quest::movepc(397,-85,-2050,19);
}
if ($popupid == 1000) { #guild banner
#not implemented yet
}
if ($popupid == 416) { #kattacastrum
#quest::movepc(416,-2,-425,-19);
}
if ($popupid == 20543) { #potimea
quest::movepc(219,0,110,8);
}
if ($popupid == 21986) { #brellsrest
#quest::movepc(480,-23,-619,36);
}
}
The # before some of those quest::movepc means that line is commented out so perl wont execute those particular lines. This is why the porter wont send you to those zones.
|
I will remove the comment's from the lines. Thank you for your help.
|
 |
|
 |
 |
|
 |

12-01-2013, 09:49 PM
|
 |
Developer
|
|
Join Date: Mar 2003
Posts: 1,498
|
|
Quote:
Originally Posted by SoltanHeatwave
Here are the only errors that were reported in any of the logs.
---------------------------------------------
[11.30. - 22:08:09] Starting Log: logs/eqemu_error_zone_3992.log
[11.30. - 22:08:09] Path File ./Maps/steamfontmts.path not found.
[11.30. - 22:11:08] Path File ./Maps/steamfontmts.path not found.
[11.30. - 22:13:43] Path File ./Maps/steamfontmts.path not found.
[11.30. - 22:17:58] Path File ./Maps/gfaydark.path not found.
[11.30. - 22:19:25] Path File ./Maps/guildlobby.path not found.
[11.30. - 22:21:10] Path File ./Maps/ecommons.path not found.
[11.30. - 22:24:23] Path File ./Maps/guildhall.path not found.
---------------------------------------------
[11.30. - 22:09:26] Starting Log: logs/eqemu_error_zone_3184.log
[11.30. - 22:09:26] Path File ./Maps/dragonscale.path not found.
[11.30. - 22:11:41] Path File ./Maps/lopingplains.path not found.
[11.30. - 22:14:01] Path File ./Maps/lopingplains.path not found.
[11.30. - 22:17:17] Path File ./Maps/lfaydark.path not found.
[11.30. - 22:19:45] Path File ./Maps/guildhall.path not found.
[11.30. - 22:22:29] Path File ./Maps/freportw.path not found.
[11.30. - 22:24:02] Path File ./Maps/guildlobby.path not found.
[11.30. - 22:26:42] Path File ./Maps/iceclad.path not found.
I have redownloaded and redone the server a few times already, and I have not found these .path files in any folder or subfolder. I don't know if these missing files would cause quest npc's to intermittently answer hails, or seeing incorrect graphics for particular mobs, or having an incorrect image in the guild hall or not.
Thank you MarioMario. I tried it with my 250 flagged account and the guild portal still didn't work. I can only go to pre pop zones. I can set the teleporter to another zone like dragonscale hills, but when I step into the porter nothing happens. Again that is with a 250 flagged account, not gm flagged and xp and level set to 65. I found the gm commands and leveled the character up to 65, without being gm flagged, just to try the porter as a level 65 toon.
|
Don't worry about the .path files. The .map files are the important ones.
When you say intermittently respond to hails, I assume that you are not standing close enough to the NPCs.
Incorrect graphics for mobs may be the client for the era of zone you are going into. Not all zones are complete.
|
 |
|
 |

12-02-2013, 09:19 AM
|
Hill Giant
|
|
Join Date: Nov 2013
Location: Eastern US
Posts: 120
|
|
Quote:
Originally Posted by joligario
Don't worry about the .path files. The .map files are the important ones.
When you say intermittently respond to hails, I assume that you are not standing close enough to the NPCs.
Incorrect graphics for mobs may be the client for the era of zone you are going into. Not all zones are complete.
|
I am standing close enough. I will go to the npc, and hit the H key to hail it, and nothing will happen. I will then rapidly hit the H key a number of times and after 15 to 20 hails will get a response. This happens to the npc standing near the soulbinder in PoK. None of the other NPC's in any of the other zones will respond at all, no matter how close I stand to them.
|

12-02-2013, 05:11 PM
|
Hill Giant
|
|
Join Date: Nov 2013
Location: Eastern US
Posts: 120
|
|
Quote:
Originally Posted by joligario
Don't worry about the .path files. The .map files are the important ones.
When you say intermittently respond to hails, I assume that you are not standing close enough to the NPCs.
Incorrect graphics for mobs may be the client for the era of zone you are going into. Not all zones are complete.
|
I am using Secrets of Faydwer Client, not updated. I believe that one has all of the updates to the new zones. The old Freeport West doesn't have the correct graphics, which I can understand, since the SoF client has the new graphics, but the new Steamfont zone doesn't have its graphics correct, the old zone does.
|
Thread Tools |
|
Display Modes |
Hybrid Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -4. The time now is 09:21 AM.
|
|
 |
|
 |
|
|
|
 |
|
 |
|
 |