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

Solved LMS Event tp problem

Hokku

Member
Joined
Jul 25, 2013
Messages
98
Reaction score
18
Location
Extremadura, Spain
Hello,im usng LMS Event from printer, this on a tfs 1.1 Mark Samman.
I dont get any console error when lauching the server, the event broadcast the msg and the teleport appear in depot then, but when i try to walk into it it doesent work, and i get this console error.

Searched a lot of those days and havent found nothing in this forums and in others. After reading a lot i think it is about the function, but not sure.

error.png


:(
 
Solution
It would appear that you aren't allowed to set the unique id of an item in that way. Maybe change it to set an action id instead?

Code:
ITEM_ATTRIBUTE_ACTIONID

Remember to change everything in the script that relies on the unique id to instead use the action id. For example:

<movevent event="StepIn" uniqueid="5000" script="lmsStepIn.lua"/>
<movevent event="StepIn" actionid="5000" script="lmsStepIn.lua"/>
It would appear that you aren't allowed to set the unique id of an item in that way. Maybe change it to set an action id instead?

Code:
ITEM_ATTRIBUTE_ACTIONID

Remember to change everything in the script that relies on the unique id to instead use the action id. For example:

<movevent event="StepIn" uniqueid="5000" script="lmsStepIn.lua"/>
<movevent event="StepIn" actionid="5000" script="lmsStepIn.lua"/>
 
Solution
It would appear that you aren't allowed to set the unique id of an item in that way. Maybe change it to set an action id instead?

Code:
ITEM_ATTRIBUTE_ACTIONID

Remember to change everything in the script that relies on the unique id to instead use the action id. For example:

<movevent event="StepIn" uniqueid="5000" script="lmsStepIn.lua"/>
<movevent event="StepIn" actionid="5000" script="lmsStepIn.lua"/>

FIXED.
Thanks!
 
Back
Top