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

Windows Help Please!!!!!!!!

gogo999

New Member
Joined
Jan 13, 2014
Messages
31
Reaction score
0
i need help from someone to fix all these problems
rNkZIm.jpg

TtYuUl.jpg

jFtSYm.jpg
 
Well half your errors are missing files.. or incorrect directories.
The other half seem to be incorrect items.xml.. and things missing from sql..
Searching through google found some results.. but nobody seemed to figure it out in those threads either.. and they are 2 years old.
I'd suggest finding another server to download.
 
Well half your errors are missing files.. or incorrect directories.
The other half seem to be incorrect items.xml.. and things missing from sql..
Searching through google found some results.. but nobody seemed to figure it out in those threads either.. and they are 2 years old.
I'd suggest finding another server to download.
all flies are in there places but it still give that errors and there is error in the sqlite file too i think
 
talkactions.xml
Pretend this is one of your errors.
Code:
No file directory for shutdown blah blah
You can clearly see the file in scripts, but still not loading.
Let' say in talkactions.xml you have the line like this
Code:
<talkaction log="yes" words="/shutdown" access="5" event="script" value="Shutdwon.lua"/>
If you look at value=.. you can clearly see that shutdown is spelt incorrectly.
So change it to look correct.
Code:
<talkaction log="yes" words="/shutdown" access="5" event="script" value="Shutdown.lua"/>
Oh no! It still shows it as missing. Why?
Well the spelling has to be exactly the same. Capitals as well.
The best way to do it is to simply 'rename' the script file, copy the name, then paste it into talkactions.xml
So after doing that it now looks like this.
Code:
<talkaction log="yes" words="/shutdown" access="5" event="script" value="shutdown.lua"/>
Yay! No more error!

Directory = value is incorrect.
Code:
data/actions/actions.xml
data/creaturescripts/creaturescripts.xml
data/globalevents/globalevents.xml
data/movements/movements.xml
data/talkactions/talkactions.xml
File missing = file is not in scripts.
Code:
data/actions/scripts/file.lua
data/creaturescripts/scripts/file.lua
data/globalevents/scripts/file.lua
data/movements/scripts/file.lua
data/talkactions/scripts/file.lua
 
Back
Top