|
| 25 Feb 2013 01:54 PM |
loadstring("\112\108\97\121\101\114\32\61\32\103\97\109\101\46\80\108\97\121\
Just the beginning part of the script. |
|
|
| Report Abuse |
|
|
|
| 25 Feb 2013 01:55 PM |
| Is there any plugins or scripts to decode it? |
|
|
| Report Abuse |
|
|
| |
|
Ferki
|
  |
| Joined: 22 Jan 2013 |
| Total Posts: 968 |
|
|
| 25 Feb 2013 01:59 PM |
Lemme help you::::::::
loadString = {String goes in here} finalStage = "" bytesDone = 0 loadNum = #loadString lagInc = wait() - 0.03
function decode() for i = 1, #loadString do l = string.char(loadString[i]) finalStage = finalStage.. "" ..l bytesDone = bytesDone + 1 wait() calcTime = (loadNum - bytesDone) / (0.03 + lagInc) print("Included Byte: " ..bytesDone.. ", Time Remaining: "..calcTime.. " Miliseconds.") end end
function run() if loadNum ~= 0 then print("-----------------") print("Calculating finish time...") TcalcTime = loadNum / (0.03 + lagInc) print("Aprox. total time: " ..TcalcTime.. " Miliseconds.") -- includes lag incriment print("-----------------") print("Starting.") print("-----------------") decode() print("-----------------") print("Decoding complete. Message:") print(tostring(finalStage)) print("-----------------") else error("No input in the table!") end end
run() |
|
|
| Report Abuse |
|
|
| |
|