• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Lua Missing function

Addams

OTMadness.com
Staff member
Board Moderator
Premium User
Joined
Sep 29, 2009
Messages
2,974
Solutions
344
Reaction score
1,832
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