• 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!

chest

Morago

New Member
Joined
Jul 14, 2009
Messages
11
Reaction score
0
how do i do a quest chest??

PD: srry if im doing too many posts to ask for help... im newbie on this.
 
no, but if you use TFS thats just default at TFS, and you need to change the UID at every new chest, so the first one is 20001, then the other quest is 20002...

and If u want to put items in a bag just double click on the black square and add a bag, then click on the bag and add items inside it..;)
 
No script is needed for this. You should do it like this.

Step 1: Place a chest, or any other container
Step 2: Go to properties and change the action ID from 0 to 2000. This means it's a quest
Step 3.1: Change the unique ID to anything between 1000-9999 (if I'm not mistaken).
Step 3.2: If you want a quest with multiple rewards where you have to choose between the items (e.g. inq, poi, wote etc.), use the same UNIQUE ID for the chests.

!
Be careful, if you accidently use the same unique on two different quests, you can only take one of the two (if you accidently use unique ID 3000 for soft boots and the same ID for the demon helmet on another quest, you cannot take both).
 
No script is needed for this. You should do it like this.

Step 1: Place a chest, or any other container
Step 2: Go to properties and change the action ID from 0 to 2000. This means it's a quest
Step 3.1: Change the unique ID to anything between 1000-9999 (if I'm not mistaken).
Step 3.2: If you want a quest with multiple rewards where you have to choose between the items (e.g. inq, poi, wote etc.), use the same UNIQUE ID for the chests.

!
Be careful, if you accidently use the same unique on two different quests, you can only take one of the two (if you accidently use unique ID 3000 for soft boots and the same ID for the demon helmet on another quest, you cannot take both).
Actually, you do need a script for this :p
The script is called system.lua and this is added to every TFS 0.3/0.4 datapack in actions.
Other servers need an edited system.lua, since the 0.3/0.4 version won't work there.
You can't use the same uniqueid more than 1x, this will give errors and bugs.

Tutorial how to use the system.lua script:
http://otland.net/threads/how-to-quests.148708/
System.lua for other servers:
http://otland.net/threads/tfs-0-2-1-0-system-lua-questsystem.185583/
 
Actually, you do need a script for this :p
The script is called system.lua and this is added to every TFS 0.3/0.4 datapack in actions.
Other servers need an edited system.lua, since the 0.3/0.4 version won't work there.
You can't use the same uniqueid more than 1x, this will give errors and bugs.

Tutorial how to use the system.lua script:
http://otland.net/threads/how-to-quests.148708/
System.lua for other servers:
http://otland.net/threads/tfs-0-2-1-0-system-lua-questsystem.185583/

Well I got no problem with using a double UID - for an example; poi
 
You should get an error about that (Duplicate uniqueid) and better change it, because it can cause all kinds of bugs.
When you add an uniqueid, you change/set the uniqueid of the item, it's not like an actionid where you just add an id to an item (actionids can be used unlimited times).
When you use for example a function with item.uid and more items have the same uniqueid, it won't work properly or the scripts don't load at all.
 
Back
Top Bottom