Advertisement
Dawnstar

Socket Park

Dec 2nd, 2011
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  1. ; Note tht you must have a text file called nix.txt tht MUST be placed in same
  2. ; dir as mirc.exe. This is how the text file should look like.
  3.  
  4. ; EXAMPLE
  5. ; john-doe
  6. ; michael-jackson
  7. ; johnnywakrak
  8. ; ayampenyek
  9. ; etc
  10.  
  11. ; Put in as many nicks possible. Try to avoid using known nicks as this may render your
  12. ; clone's nick to be guest* .
  13.  
  14. ; How to use? Press F3 to load and F2 to join the chan ur on. And of course F4 to close it.
  15.  
  16. ;- Put the below codes in remote section -;
  17. ;- BASIC CLONE LOADER START -;
  18. alias bot {
  19. socklisten $r(a,z) $+ $r(1,100) $r(110,220)
  20. sockopen bot $+ $r(1,99) irc.webchat.org 6667
  21. }
  22. on *:socklisten:bot*: {
  23. var %_r = $r(1,500)
  24. sockaccept bot_ [ $+ [ %_r ] ]
  25. sockclose bot
  26. }
  27. on *:sockopen:*: {
  28. sockwrite -n $sockname nick $read nix.txt
  29. sockwrite -n $sockname user $r(a,z) $+ $r(100,999) . . . Pornstar
  30. }
  31. on *:sockread:bot*: {
  32. sockread %_sb
  33. tokenize 32 %_sb
  34. var %_ntoks = $numtok($1-,44)
  35. if (%_ntoks == 2 && $1,$3 isnum) {
  36. sockwrite -n $sockname $3 , $1 : USERID : UNIX : PornBot
  37. }
  38. if ($1 == PING && $2) { sockwrite -n $sockname PONG $2- }
  39. if ($2 == 376) { echo -a SocketBot Successfully Connected...The bot's nick is $3 }
  40. }
  41. alias F2 { .sockwrite -n * join # }
  42. alias F3 { .echo -a Plse wait while clone is being initialised | bot }
  43. alias F4 { .echo -a Getting rid of the sockets now | .sockclose * }
  44.  
  45. ;- BASIC CLONE LOADER END -;
  46. ;- You can change the F Keys to suit your script. -;
  47. ;- as requested by Herryz\D0S\Prayerz -;
  48. ;- This is simply a parking clone so dun expect it to do anythin else but park in the # -;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement