• 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 Missing function

Addams

OTMadness.com OTSes Services
Staff member
Board Moderator
Joined
Sep 29, 2009
Messages
2,920
Solutions
342
Reaction score
1,688
Location
Egypt
I am changing scripts from 0.4 to 1.3 but I am stuck here
<movevent event="StepIn" itemid="1423" Function="onStepInField"/>
<movevent event="AddItem" itemid="1423" Function="onAddField"/>
Function doesn't exist on 1.3 and I can't find properly working script for 1.3.
 
try it
Code:
    <movevent event="StepIn" itemid="1423" function="onStepInField" />
    <movevent event="AddItem" itemid="1423" function="onAddField" />
 
Solution
Back
Top