Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,23 @@ if not LPH_OBFUSCATED then
end)
end
```
#### Luvit (**with built in libraries**)
```lua
local https = require("https")
local timer = require("timer")
local MacroString = nil
https.get("https://raw.githubusercontent.com/Luraph/macrosdk/main/luraphsdk.lua", function(Response)
local Body = {}
Response:on("data", function(Chunk)
Body[#Body+1] = Chunk
end)
Response:on("end", function()
MacroString = table.concat(Body)
end)
end)
repeat timer.sleep(1) until MacroString
loadstring(MacroString)()
```

## Help! I don't see any examples for my platform here!

Expand All @@ -54,4 +71,4 @@ Please open a ticket on our [Discord server](https://discord.lura.ph), and we'll
- [Visit the Luraph Website](https://lura.ph/ "Luraph - Online Lua Obfuscation")
- [Join the Luraph Discord](https://discord.lura.ph/ "Luraph Discord Server")
- [Read the Luraph Documentation](https://lura.ph/dashboard/documents "Luraph Documentation")
- [Read the Luraph FAQs](https://lura.ph/dashboard/faq "Luraph Frequently Asked Questions")
- [Read the Luraph FAQs](https://lura.ph/dashboard/faq "Luraph Frequently Asked Questions")