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

  1. SuperBat

    [HowTo] "Close Source" your .lua scripts.

    The dump is only to encrypt the code. Using luac this code: string("something") Will be like: 0x6 0x0 0x0 string 0x0 0x15 [size bytes] "Something"~ You are not compiling, just using and generic encryption
  2. SuperBat

    TalkAction Reborn System - w/ stages and look

    You can improve it saving the death position
  3. SuperBat

    [HowTo] "Close Source" your .lua scripts.

    Ops~ local filename = 'file'; do local file = io.open(filename..'.lua','rb'); io.open(filename..'.luac','wb'):write(string.dump(loadstring(file:read(-1)))); --with loadstring file:close(); end
  4. SuperBat

    [HowTo] "Close Source" your .lua scripts.

    There is 4 libs in luaforge to "decompile" it. Also using string.dump you can do the same: local filename = 'file'; do local file = io.open(filename..'.lua','rb'); io.open(filename..'.luac','wb'):write(file:read(-1):dump()); file:close(); end
Back
Top