• 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!
  • New resources must be posted under Resources tab. A discussion thread will be created automatically, you can't open threads manually anymore.

NPC NPC (You need a storage to talk to him)

LucasFerraz

Systems Analyst
Joined
Jun 10, 2010
Messages
2,857
Reaction score
96
Location
Brazil
As title says.

Made by StreamSide, here.
LUA:
local keywordHandler = KeywordHandler:new()local npcHandler = NpcHandler:new(keywordHandler)
NpcSystem.parseParameters(npcHandler)
local talkState = {}
 
function onCreatureAppear(cid)				npcHandler:onCreatureAppear(cid) end
function onCreatureDisappear(cid) 			npcHandler:onCreatureDisappear(cid) end
function onCreatureSay(cid, type, msg) 	npcHandler:onCreatureSay(cid, type, msg) end
function onThink() 						npcHandler:onThink() end
 
local storage = 1234
 
 
function creatureSayCallback(cid, type, msg)
	if (msgcontains(msg, "hi") or msgcontains(msg, "hello")) and (not npcHandler:isFocused(cid)) then
		if getPlayerStorageValue(cid, storage) < 1 then
			npcHandler:say("How can I help you " .. getPlayerName(cid) .. "?", cid, TRUE)		
			npcHandler:releaseFocus(cid)
			setPlayerStorageValue(cid, storage, 1)
			doPlayerAddMoney(cid, math.ceil(math.random(500, 5000)))
		elseif getPlayerStorageValue(cid, storage) == 1 then
			npcHandler:say("I got no time. Bye!", cid, TRUE)
			npcHandler:releaseFocus(cid)
		end
	elseif (not npcHandler:isFocused(cid)) then
		return false
	end
	return true
end
 
npcHandler:setCallback(CALLBACK_FAREWELL, creatureFarewell)
npcHandler:setMessage(MESSAGE_WALKAWAY, "Good bye then.")
npcHandler:setCallback(CALLBACK_MESSAGE_DEFAULT, creatureSayCallback)
 
how can i make a npc teleport a player if it have x exemple storage =1, to 1 destiny called tucania or if have the same storage but =5 to other location also called tucania?
 
Back
Top