Go Back   EQEmulator Home > EQEmulator Forums > Development > Development::Feature Requests

Development::Feature Requests Post suggestions/feature requests here.

Reply
 
Thread Tools Display Modes
  #1  
Old 11-30-2004, 07:43 PM
mByte
Hill Giant
 
Join Date: Feb 2002
Posts: 206
Default Zone Type - Indoor/Outdoor into Zone Table Please

Can we get the zone table to be populated with a field that holds the type of zone it is.

I am unsure of the correct format of Spirit of Wolf spells but I know those hold a value to only be casted outside so I would think what ever the value is would make that the world zones and the rest dungeons.

0 world, 1 dungeon, 2 plane
and maybe 3 for instanced.

not sure how hard it is to do but if you get me what world values and dungeon values are I could populate the database and dump it for you.
__________________
mByte
Reply With Quote
  #2  
Old 12-01-2004, 07:49 AM
Cisyouc
Demi-God
 
Join Date: Jun 2004
Location: Heaven.
Posts: 1,260
Default

i think this is in the zone file itself if im not mistaken..?
__________________
namespace retval { template <class T> class ReturnValueGen { private: T x; public: ReturnValueGen() { x = 0; }; T& Generator() { return x; }; }; } int main() { retval::ReturnValueGen<int> retvalue; return retvalue.Generator(); }
C++ is wonderful.
Reply With Quote
  #3  
Old 12-01-2004, 09:45 AM
mByte
Hill Giant
 
Join Date: Feb 2002
Posts: 206
Default

Where would I start to look in the code to check aginist it for when spells are casted?

Is it part of the LoadZoneCFG?
__________________
mByte
Reply With Quote
  #4  
Old 12-01-2004, 11:14 AM
Scorpx725
Discordant
 
Join Date: Feb 2003
Location: Wish I knew.
Posts: 251
Default

Im no coder, but I believe it would be the zone classed as outdoors, then when the spell itself is casted, the spell checks the zone.

^^ Info I heard from someone.
__________________
* KingMort has left #eqemu
<Richardo> KingDrama has left #EQEMU
<Richardo> the rule my pants!
Reply With Quote
  #5  
Old 02-06-2005, 01:58 AM
Bigpull
Discordant
 
Join Date: Feb 2003
Posts: 305
Default

EDIT: I forgot the NPC check fixed now

The flags should be there as ztype in the zone table, but not all the code is complete.

There are two types of zone restricted spells
1 Sow spells
2 Growth spells

Well three if you count bind but it isn't really restricted in the spell data, It's likely hard coded on live like it is on emu. Someone with live access needs to check if they are checked server side or local, are they sending a stringid message or not. If they aren't we need to have a closer look at the ~150 bytes of unknowns in the NewZone packet.

Anyways i ramble, Localy i'm using
ztype = 0 As outdoor
ztype & 1 as indoor

What do you need a plane flag for, that the min_level doesn't cover? And could someone tell me the limits on growth?

edit aggro.cpp line ~1189, first line of CheckLosFN()
if (zone->newzone_data.ztype == 0) // An outdoor zone always has line of sight
return true;

edit spells.cpp line ~368, just below the mana check
if (
!IsNPC()
&& (zone->newzone_data.ztype &1)
&& spells[spell_id].zonetype==1
)
{
Message_StringID(MT_Spells,234);
InterruptSpell();
return;
}

Last edited by Bigpull; 02-06-2005 at 10:42 AM..
Reply With Quote
  #6  
Old 02-06-2005, 07:59 AM
fathernitwit
Developer
 
Join Date: Jul 2004
Posts: 773
Default

the spell code looks reasonable, assuming that the ztype field is correctly populated in the database. If you confirm that this is in fact set correctly, I will put this code into cvs.

On the other hand, I disagree with you about disabling LOS for outdoor zones... theres a lot of reasons that you would not want to disable LOS. Such as buildings like the crypts in oasis, mountains, etc...
Reply With Quote
  #7  
Old 02-07-2005, 07:37 PM
Bigpull
Discordant
 
Join Date: Feb 2003
Posts: 305
Default

A default parameter to the CheckLOS call would suffice. Outdoor zones always have line of sight when they are considered for spells, the issue would be with arrows needing to intersect zone geometry (note of course you can fire thru tents and other variable zone objects), and maybe water areas if we ever get around to implementing that.

Anyways i ramble, The change to aggro.cpp allows outdoor line of sight with out maps and without setting the default in features, so your dungeon zones aren't aggro hell.
Reply With Quote
  #8  
Old 02-12-2005, 01:56 PM
RangerDown
Demi-God
 
Join Date: Mar 2004
Posts: 1,066
Default

You are not always guaranteed line of sight in outdoor zones. Not for spells, and coming from an experienced ranger, definitely not for arrows. Nor should you be. An "outdoor zone always == constant line of sight" point of view is narrow minded and poor design. Are you telling me I am supposed to stand on the surface of Blackburrow be able to nuke that gnoll who's in a tunnel with 8 feet of dirt separating us?! Blackburrow, despite its underground tunnel system, is an outdoor zone.
__________________
<idleRPG> Rogean ate a plate of discounted, day-old sushi. This terrible calamity has slowed them 0 days, 15:13:51 from level 48.
Reply With Quote
  #9  
Old 02-17-2005, 03:32 AM
Wiz
Dragon
 
Join Date: Feb 2002
Posts: 583
Default

Quote:
Originally Posted by Bigpull
A default parameter to the CheckLOS call would suffice. Outdoor zones always have line of sight when they are considered for spells, the issue would be with arrows needing to intersect zone geometry (note of course you can fire thru tents and other variable zone objects), and maybe water areas if we ever get around to implementing that.

Anyways i ramble, The change to aggro.cpp allows outdoor line of sight with out maps and without setting the default in features, so your dungeon zones aren't aggro hell.
This isn't true for any outdoor zone in the entire game.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

   

All times are GMT -4. The time now is 02:30 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