if msgcontains(msg, 'super extra mount') then
npcHandler:say('Give me mammoth {strings}.', cid)
Topic[cid] = 1
elseif msgcontains(msg, 'string') and Topic[cid] == 1 then
if getPlayerItemCount(cid,7464) >= 1 then
if doPlayerRemoveItem(cid,5879,1) then
npcHandler:say('Now you can use boar mount.', cid)
doPlayerAddMount(cid, 10)
end
else
npcHandler:say('You dont have mammoth strings.', cid)
end
nice... doesnt work -.-Was it hard to write?LUA:if msgcontains(msg, 'super extra mount') then npcHandler:say('Give me mammoth {strings}.', cid) Topic[cid] = 1 elseif msgcontains(msg, 'string') and Topic[cid] == 1 then if getPlayerItemCount(cid,7464) >= 1 then if doPlayerRemoveItem(cid,5879,1) then npcHandler:say('Now you can use boar mount.', cid) doPlayerAddMount(cid, 10) end else npcHandler:say('You dont have mammoth strings.', cid) end