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

Skills doesn't save

Anothai

:3
Joined
Mar 24, 2008
Messages
641
Reaction score
3
Location
Turtle Tail :'O
Hello, I've got a problem.
My characters skills won't be saved =[
I tryed to add this in global.lua.
saveDelay = 10 * 60 * 1000 -- 10 minutes for each save.
storageValue = 2342

if (getGlobalStorageValue(storageValue) == -1) then
function save(saveDelay)
saveData()
print(">>>>PLAYERS SAVED<<<<")
addEvent(save, saveDelay, saveDelay)
end
addEvent(save, saveDelay, saveDelay)
setGlobalStorageValue(storageValue, 1)
end
It save only player but not thier skills =[ Does anyone know whats wrong??
 
I had / still have same problem with my SQL server. The answer is probaly because your using an out-of date phpmyadmin/sql version on xampp so it won't save data. You shoud atleast have phpMyAdmin 2.11.3
 
Last edited:
I had / still have same problem with my SQL server. The answer is probaly because your using an out-of date phpmyadmin/sql version on xampp so it won't save data. You shoud atleast have phpMyAdmin 2.11.3

Okay, thank you verry much. I'll try it =]

Hmm does anyone know how to upgrade PhpMyAdmin from 2.10.3 to 2.11.3??
 
Last edited:
You can simply solve this problem by downloading the newest version of xampp with a simple search on google.com.
 
You can simply solve this problem by downloading the newest version of xampp with a simple search on google.com.

Aww, im using Linux. I saw in a forum that i need to reinstall and copy all files to new phpmyadmin :( does anyone know easier way?
 
Back
Top