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

Starter Book With Story

  • Thread starter Thread starter Deleted member 49793
  • Start date Start date
D

Deleted member 49793

Guest
Hey request here,

How to make a book say something when you open it (this book will be put in everyones starter items) with a small story in it.

Not quite sure how to do this

~Thanks <3
 
You can integrate this into your login.lua or firstitems script:
LUA:
	if getPlayerStorageValue(cid, 30001) == -1 then
		setPlayerStorageValue(cid, 30001, 1)
		local text = 'First line\nSecond line\nYou get the idea.'
		doItemSetAttribute(doPlayerAddItem(cid, 1950, 1), 'text', text)
	end
 
Back
Top