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

Recent content by Valania

  1. V

    Error in player.lua

    http://prntscr.com/p4131e local decayId = itemType:getDecayId() if decayId ~= -1 then description = string.format('%s\nDecays to: %d', description, decayId) end elseif thing:isCreature() then local str = '%s\nHealth: %d / %d'...
  2. V

    Walk on snow - no errors in console

    Yes, that was the error, the map had the wrong Item ID for snow.
  3. V

    Walk on snow - no errors in console

    I think I might have found the error, my snow Id in the map is 4748 etc., that must be the problem, right?
  4. V

    Walk on snow - no errors in console

    TFS 1.3 Downgraded to 8.6
  5. V

    Walk on snow - no errors in console

    Isnt there a "StepIn" missing?
  6. V

    Walk on snow - no errors in console

    Also found this on movements.xml: <!-- Snow footprint tiles --> <movevent event="StepOut" itemid="670" script="snow.lua" /> <movevent event="StepOut" fromid="6580" toid="6593" script="snow.lua" />
  7. V

    Walk on snow - no errors in console

    Just tested some more and found out that I also received a debug on a blood stain.
  8. V

    Walk on snow - no errors in console

    So yeah the normal snow is ID 670, but all the numbers I showed you have something to do with snow.
  9. V

    Walk on snow - no errors in console

    <item id="6594" name="snow"> <attribute key="description" value="Someone must have walked here recently." /> <attribute key="decayTo" value="670" /> <attribute key="duration" value="10" /> This one I was the one with 670.
  10. V

    Walk on snow - no errors in console

    Some more Ids are snow 6580-6593 6594-6608 & 6609-6626 & 6757 -6760
  11. V

    Error in player.lua

    @M0ustafa I just recognized I'm still getting debugs from teleports
  12. V

    Walk on snow - no errors in console

    My normal & GM debugged on snow. No the data is basically just the raw server master real map data. I just added my vipsystem. Yeah, as far as I can see, it only happens on snow.
  13. V

    Walk on snow - no errors in console

    Tried, still can't log back in
  14. V

    Walk on snow - no errors in console

    function onStepOut(creature, item, position, fromPosition) local player = creature:getPlayer() if player and player:isInGhostMode() then return true end if item.itemid == 670 then item:transform(6594) else item:transform(item.itemid + 15) end...
  15. V

    Walk on snow - no errors in console

    So whenever I walk on snow, I get debugged & can't log back in. No errors are shown in the console. Any ideas where the source of this error may be from?
Back
Top