Advertisement
Guest User

api.lua

a guest
Dec 27th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.27 KB | None | 0 0
  1. local function mailSend(user,message)
  2.     local wPage
  3.     if user and message then
  4.         wPage = http.post('http://kindra.rf.gd','username='..user..'&message='..message)
  5.     else
  6.         wPage = http.post('http://kindra.rf.gd/','')
  7.     end
  8. end
  9.  
  10. _G.chat = mailSend
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement