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

Jump from 8.6 to 9.46. [First error's with directory]

vakacjus

Lua & C++ Study.
Joined
Oct 23, 2008
Messages
255
Solutions
1
Reaction score
26
Hi Otlanders!

I have change my The Forgotten Server 8.60 V3 - Edited By Otswe, version 0.3.6 V3 - Edited By Otswe (Crying Damson) with The Forgotten Server - Version 0.2.12 (Mystic Spirit).

And as I espect, I have got first issue.

1.
PHP:
[03/06/2012 13:43:01] [Warning - NpcScript::NpcScript] Can not load script: default.lua
[03/06/2012 13:43:01] cannot open default.lua: No such file or directory
 
Last edited:
/data/npc/scripts/default.lua
Lua:
local keywordHandler = KeywordHandler:new()
local npcHandler = NpcHandler:new(keywordHandler)
NpcSystem.parseParameters(npcHandler)

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

npcHandler:addModule(FocusModule:new())
 
/data/npc/scripts/default.lua
Lua:
local keywordHandler = KeywordHandler:new()
local npcHandler = NpcHandler:new(keywordHandler)
NpcSystem.parseParameters(npcHandler)

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

npcHandler:addModule(FocusModule:new())

I have fixed this issue by CHANGING ALL DIRECTORY manualy from "default.lua" to "data/npc/script/default.lua" ._., and I have got another Issue. http://otland.net/f16/getnpcid-nil-value-massive-error-9-46-a-159908/
 
Back
Top Bottom