Thread: Instances.
View Single Post
  #13  
Old 01-21-2013, 03:03 PM
c0ncrete's Avatar
c0ncrete
Dragon
 
Join Date: Dec 2009
Posts: 719
Default

not a problem. you want to use 0 most of the time when creating instances.
unless you've done some heavy customization, there should only be 3 zones with other versions numbers in your database.

Code:
select zoneidnumber, version, long_name from zone where version > 0;
+--------------+---------+---------------------+
| zoneidnumber | version | long_name           |
+--------------+---------+---------------------+
|           25 |       1 | The Nektulos Forest |
|          151 |       1 | The Bazaar          |
|          114 |       1 | Skyshrine           |
+--------------+---------+---------------------+
3 rows in set (0.06 sec)
__________________
I muck about @ The Forge.
say(rand 99>49?'try '.('0x'.join '',map{unpack 'H*',chr rand 256}1..2):'incoherent nonsense')while our $Noport=1;
Reply With Quote