Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local server_user_id = "progress"
- local server_user_pass = "10000"
- local test = "<sui>" .. server_user_id .. "</sui><sup>" .. server_user_pass .. "</sup>"
- function argumentTest()
- print("user id is : " .. received_server_user_id)
- print("user pass is: " .. received_server_user_pass)
- return
- end
- while true do
- local received_server_user_id = string.match(test, "<sui>(%w+)</sui>")
- local received_server_user_pass = string.match(test, "<sup>(%w+)</sup>")
- argumentTest()
- return false
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement