Skip to content

Instantly share code, notes, and snippets.

@k1zn
k1zn / httpRequest.lua
Created July 12, 2022 12:53
httpRequest with cookies example
-- https://www.blast.hk/threads/20532/
-- thank BBooGG
local responseBody = {}
local req = {
url = 'https://yondime.tk/',
method = 'GET',
headers = {
['User-Agent'] = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36',
@k1zn
k1zn / sendPickup.lua
Created March 1, 2022 13:29
sendPickup
function sendPickup(pickupId)
if (tonumber(pickupId)) then
local pickupBs = bitStreamNew()
bitStreamWriteDWord(pickupBs, tonumber(pickupId))
sendRpc(131, pickupBs)
bitStreamDelete(pickupBs)
end
end
@k1zn
k1zn / VWRam.py
Last active November 13, 2021 19:37
VimeWorld RAM Bypass
# thx LoganFrench
import os, base64
def base64_encode(text):
return base64.b64encode(bytes(text, 'utf-8')).decode('ascii')
ram = input('Enter RAM amount (example 3G, 3000M): ')
os.system('cmd /d /c start "" /D "%APPDATA%\\.vimeworld" "%APPDATA%\\.vimeworld\\VimeWorld.exe" -home "%APPDATA%\\.vimeworld\\" -jre "%APPDATA%\\.vimeworld\\jre-x64" -jvmargs -Xmx' + ram + ' -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -jar "launcher.jar" -updater ' + base64_encode(os.getenv('APPDATA') + '\\.vimeworld\\VimeWorld.exe') + ' -appdata ' + base64_encode(os.getenv('APPDATA')))