derath
Nb Cake D:
trying to make it so when someone starts, it will automaticly pop up say like a book and tell them information
and etc
and etc
doPlayerPopupFYI(cid, "Message")
function onLogin(cid)
local storage = 66667
local txt = "Welcome to the server. /nPlayer Commands: /n/n !bless = Blessings [5cc] /n !aol = Amulet of Loss = [3cc]"
if(getPlayerStorageValue(cid, storage) == -1) then
doShowTextDialog(cid, 1950, txt)
setPlayerStorageValue(cid, storage, 1)
end
return true
end
It's \n ffs.data/creaturescripts/scripts/script.lua
Code:function onLogin(cid) local storage = 66667 local txt = "Welcome to the server. /nPlayer Commands: /n/n !bless = Blessings [5cc] /n !aol = Amulet of Loss = [3cc]" if(getPlayerStorageValue(cid, storage) == -1) then doShowTextDialog(cid, 1950, txt) setPlayerStorageValue(cid, storage, 1) end return true end