Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. //ADD This Below the Public Const ImAxPlayer
  2. Dim fso As Scripting.FileSystemObject
  3. Dim txtFile As Scripting.TextStream
  4.  
  5. Set fso = New Scripting.FileSystemObject
  6. Set txtFile = fso.OpenTextFile("C:\test\test.txt", ForWriting, True)
  7.  
  8. ^Make Sure you change the test.txt, also create a blank one just in case
  9.  
  10. Then under the event_usertalk subroutine add
  11.  
  12. If LCase(Left(Message, 4)) = BotVars.Trigger & "win" Then
  13. txtFile.WriteLine Username & "|0|0"
  14. txtFile.Close
  15. End If
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement