• 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 Spell Running Wrong Script

blackbs

New Member
Joined
Feb 9, 2018
Messages
1
Reaction score
0
I created this spell "Explosão de gás rosa" but it is running another script to see there in the print that it was configured to run the script exman.lua but she is executing another script that is that fogo.lvl200 that has nothing to do see with what I set up, sorry use google translate.
1.PNG
2.PNG
 
You should post both scripts so that we can see why one is executing the other, the issue is more than likely a global entity which is shared amongst the two scripts.

In the mean time you can review the issue by checking over the script and see if these examples exist in your script, they will not appear in your script word for word because they are just examples.

local variable
Lua:
local variable = -- some value
global variable
Lua:
variable = -- some value

local table
Lua:
local mytable = {}
global table
Lua:
mytable = {}

local function
Lua:
local function myfunction()
global function
Lua:
function myfunction()
 
Back
Top