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

Lua WoE Script error in execute command /woe /!/SETUP

guizinho_sz

New Member
Joined
May 29, 2011
Messages
15
Reaction score
0
WoE Script error in execute command /woe /!/SETUP
semttulousah.png
 
yes problem don't have functions in db.ExecuteQuery not read..
ned changed danielbruno say how solved
changed all lines in script
db.executeQuery for db.query
 
OK Cronox

Open _WoE.lua (where is your .exe) And...

Press CTRL+F, look for db.query and replace for db.executeQuery OR

If your script is db.executeQuery, replace for db.query

OBSERVATION:

...You Have To Do With All The Lines That You Find...

See an Example:

I Pressed CTRL+F and find db.query /

db.query("DROP TABLE IF EXISTS `woe`;")

And a Replace For:

db.executeQuery("DROP TABLE IF EXISTS `woe`;")

OR

I Pressed CTRL+F and find db.executequery /

db.executequery("DROP TABLE IF EXISTS `woe`;")

And a Replace For:

db.query("DROP TABLE IF EXISTS `woe`;")


I Hope This Helps And Sorry For My English.
 
Last edited:
Back
Top