• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Problem with quests (too high uniqueid?)

Xianji

New Member
Joined
May 7, 2014
Messages
17
Reaction score
0
I can create a normal quest with actionid 2000 and whatnot, but my problem comes when an item has too high of a uniqueid (in this case above 20000).

The chest which is made identical to other quests and the only difference being the uniqueid, and it just opens it normally. Any quick fix to this?

Thanks!
 
Still trying to find a solution to this. The best solution I've come across is switching the extreme high uniqueid with an item with a 4-digit uniqueid. Only problem is I don't know how to also change the sprite itself, so it's an entirely different item although it does everything else the way it should.

Maybe if I could find a sprite editor I could swap the pictures too. Any ideas?
 
I had this problem with the chests but using UNIQUEID system (no actionid required)

just needed to change this line so more items where inside the range, check if your script has this!
if not, no idea whats happening
Code:
if prize > 1000 and prize < 14274 then
 
You're right! At first I wasn't sure where to put it, so I looked up my quest action.xml file and found this:

Code:
if item.uid > 1000 and item.uid < 10000 then

I just had to increase the limit from 10000 to 25000. Thanks a lot!
 
Back
Top