You are on page 1of 1

--this script from orion

function iklan()
sendPacket(2,"action|welcomeadrewarded")
end

function beli()
sendPacket(2, "action|buy\nitem|door_mover")
sendPacket(2, "action|drop\n|itemID|1404")
sendPacket(2, "action|dialog_return\ndialog_name|drop_item\nitemID|1404|\ncount|1")
end

function warp()
world = "contoh|123" --Change this like ( contoh(nameworld)|123(id) )
sendPacket(3, "action|join_request\nname|" .. world .. "\ninvitedWorld|0")
end

function keluar()
sendPacket(3, "action|quit_to_exit")
end

function find(type, pkt)


if pkt:find("/ad") then
iklan()
end
if pkt:find("/buy") then
beli()
end
if pkt:find("/wp") then
warp()
end
if pkt:find("/out") then
keluar()
end
end

AddHook("OnTextPacket", "jdjjx", find)

You might also like