Thread: Zone Instancing
View Single Post
  #12  
Old 08-27-2008, 12:49 PM
Rocker8956
Hill Giant
 
Join Date: Sep 2007
Posts: 117
Default Zone Instancing

Hmm, it looks like the easiest way to handle zone instancing would be to have multiple database entries for the same zone. By easiest I mean least code and least server intensive.

Using the RajA zone as an example, we could do something like this in the database.
(I am at work so the table, field, and map names are made up)

ZoneName, MapName
RajA01, RajA
RajA02, RajA
RajA03, RajA

We would also need to setup the spawns, along with other things, for each zone - RajA01, RajA02, RajA03
The spawns would essentially be the same for each zone excluding uniqueIDs, respawntime, timeleft, etc.
This would take a lot of database entries but most of it would be copy and paste.
This method puts a cap on the number of times a zone can be instanced but I highly doubt any of our servers will hit that cap. If one ever does we would just need to add another database entry.
Any thoughts?
Reply With Quote