• 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
Staff member
Global Moderator
Premium User
Joined
Sep 29, 2009
Messages
2,982
Solutions
344
Reaction score
1,860
Location
Egypt
GitHub
molegacy
Twitch
molegacy1
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