Unique appear randomly

02/22/2022 23:38 srothanglong#1
Hello experts.
I have 1 suggested question.
How to make unique appear randomly?
For example Unique Tiger Woman appears. It spawned at random locations on the map that weren't exactly 1 from the character we specified.
How to solve the problem to add any Unique 1 at the point that we mark as the reverse shift point? :confused::confused::confused:
02/24/2022 00:33 srothanglong#2
Up
02/24/2022 09:30 Judgelemental#3
Quote:
Originally Posted by srothanglong View Post
Hello experts.
I have 1 suggested question.
How to make unique appear randomly?
For example Unique Tiger Woman appears. It spawned at random locations on the map that weren't exactly 1 from the character we specified.
How to solve the problem to add any Unique 1 at the point that we mark as the reverse shift point? :confused::confused::confused:
First of all take a look at Tiger Girl

PHP Code:
USE [SRO_VT_SHARD]
SELECT[*] FROM [dbo].[Tab_RefNestWHERE dwTacticsID IN
SELECT [dwTacticsIDFROM [dbo].[Tab_RefTacticsWHERE dwObjID IN
(select ID from _RefObjCommon where CodeName128 like 'MOB_CH_TIGERWOMAN') ) 
You'll see that she has MANY spawn points designated at certain times.
Between 10800 seconds (3 hours) to 21600 seconds (6 hours).

My assumption in order to add any unique monster at 1 designated point you should [Only registered and activated users can see links. Click Here To Register...]

Once you are done understanding that, take a look at [Only registered and activated users can see links. Click Here To Register...]

The result I got from following the tutorial above:
[Only registered and activated users can see links. Click Here To Register...]


Make sure your textdata_obj.txt is configured properly in order to display the name of the zone.
SN_ZONE_123 Lv.90 Blizzard, for example

You can copy the SN_ZONE from other regions to see how it is placed in the textdata_obj.txt
02/24/2022 15:36 srothanglong#4
Quote:
Originally Posted by Judgelemental View Post
First of all take a look at Tiger Girl

PHP Code:
USE [SRO_VT_SHARD]
SELECT[*] FROM [dbo].[Tab_RefNestWHERE dwTacticsID IN
SELECT [dwTacticsIDFROM [dbo].[Tab_RefTacticsWHERE dwObjID IN
(select ID from _RefObjCommon where CodeName128 like 'MOB_CH_TIGERWOMAN') ) 
You'll see that she has MANY spawn points designated at certain times.
Between 10800 seconds (3 hours) to 21600 seconds (6 hours).

My assumption in order to add any unique monster at 1 designated point you should [Only registered and activated users can see links. Click Here To Register...]

Once you are done understanding that, take a look at [Only registered and activated users can see links. Click Here To Register...]

The result I got from following the tutorial above:
[Only registered and activated users can see links. Click Here To Register...]


Make sure your textdata_obj.txt is configured properly in order to display the name of the zone.
SN_ZONE_123 Lv.90 Blizzard, for example

You can copy the SN_ZONE from other regions to see how it is placed in the textdata_obj.txt
Thanks for your help, but the first link doesn't seem to be valid
02/24/2022 16:02 Judgelemental#5
Quote:
Originally Posted by srothanglong View Post
Thanks for your help, but the first link doesn't seem to be valid
[Only registered and activated users can see links. Click Here To Register...]