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

How to make that quest gives Experience?

Just instead of putting
LUA:
doPlayerAddItem(cid,xxxx,1)
Put
LUA:
doPlayerAddExp(cid,xxxx)
Or put both and it will give out the 2 things
 
If you use TFS quest system, edit data/actions/scripts/quests/system.lua:
Code:
local questsExperience = {
	[30015] = 10000
}
The number on the left is UID of chest, the number on the right is how much exp do they players get.
 
Back
Top