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

transform to creaturescripts

xLosT

Member
Joined
Jan 11, 2010
Messages
1,021
Reaction score
13
Location
Brasil, Rio Grande do Sul
need transform to creaturescripts and add storage to first login.

PHP:
local c = {
	text = "WELCOME TO X OT MISTER [NAME] in this letter u will find out how to blablablabla",
	writer = "Arnold",
	date = os.date("%d/%m/%Y %H:%M:%S")
	}
	item = doCreateItemEx(2598, 1)
	doSetItemText(item.uid, c.text, c.writer, c.date)
	doPlayerAddItemEx(cid, item, true)
 
LUA:
function onLogin(cid)
	if(getPlayerLastLoginSaved(cid) == 0) then
		local c = { 
    			text = "WELCOME TO X OT MISTER [NAME] in this letter u will find out how to blablablabla", 
    			writer = "Arnold", 
    			date = os.date("%d/%m/%Y %H:%M:%S") 
    		} 
    		item = doCreateItemEx(2598, 1) 
    		doSetItemText(item.uid, c.text, c.writer, c.date) 
   		doPlayerAddItemEx(cid, item, true)
	end
	return true
end
 
Back
Top