Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. require "lib.sampfuncs"
  2. require "lib.moonloader"
  3. local events = require 'lib.samp.events'
  4.  
  5. function fsafe()
  6. sampSendChat("/fsafe")
  7. sampSendDialogResponse(6054, 1, 0)
  8. sampSendDialogResponse(6053, 1, 5)
  9. sampSetCurrentDialogEditboxText('100')
  10. sampAddChatMessage('works', -1)
  11. end
  12.  
  13.  
  14. function main()
  15. while not isSampAvailable() do wait(0) end
  16. sampRegisterChatCommand("saf", fsafe)
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement