Advertisement
PikalaxALT

remote.ini

Feb 18th, 2015
363
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 3.11 KB | None | 0 0
  1. ; usage: $caps(string of text or $nick or $1 etc)
  2. alias caps return $regsubex($1-,/^(.)/S,$upper(\t))
  3. if (%donger == $null) {
  4.   set %donger 0
  5.   set %dngr_hun 0
  6. }
  7.  
  8.  
  9. on *:TEXT:*:#:{
  10.   if (%Nmes. [ $+ $nick ] > 0) {
  11.     msg $chan $nick, you have %Nmes. [ $+ [ $nick ] ] unread messages.
  12.     while (%Nmes. [ $+ [ $nick ] ] > 0) {
  13.       var %usr = %usr. [ $+ [ $nick [ $+ [ . [ $+ [ %Nmes. [ $+ [ $nick ] ] ] ] ] ] ] ]
  14.       var %msg = %msg. [ $+ [ $nick [ $+ [ . [ $+ [ %Nmes. [ $+ [ $nick ] ] ] ] ] ] ] ]
  15.       msg $chan %usr said: %msg
  16.       dec $Nmes. [ $+ [ $nick ] ]
  17.       unset %usr. [ $+ [ $nick [ $+ [ . [ $+ [ %Nmes. [ $+ [ $nick ] ] ] ] ] ] ] ]
  18.       unset %msg = %msg. [ $+ [ $nick [ $+ [ . [ $+ [ %Nmes. [ $+ [ $nick ] ] ] ] ] ] ] ]
  19.     }
  20.   }
  21. }
  22.  
  23.  
  24. on *:TEXT:*fainted!:#:{
  25.   if ($nick == POKETEXT) && ($chan == #poketext) {
  26.     msg #twitchplayspokemon <POKETEXT> $1-
  27.   }
  28. }
  29.  
  30. on *:TEXT:!fist*:#:{
  31.   if ($3 == $NULL) {
  32.     /describe $chan fists $2- a bit with a large Magikarp
  33.   }
  34.   else {
  35.     /describe $chan fists $2 a bit with a large $3-
  36.   }
  37. }
  38.  
  39. on *:TEXT:!hail*:#:{
  40.   if (natori !ison $chan) {
  41.     msg $chan ヽ༼ຈل͜ຈ༽ノ HAIL $upper($2-) ヽ༼ຈل͜ຈ༽ノ
  42.     timer 1 5 /echo -a hail timer timed out
  43.   }
  44. }
  45.  
  46.  
  47. on *:TEXT:!riot*:#:{
  48.   if (yelnaX !ison $chan) && (DootBot !ison $chan) {
  49.     if ($upper($2) == DANCE) {
  50.       msg $chan ♫ ┌༼ຈل͜ຈ༽┘ ♪ DANCE RIOT ♫ ┌༼ຈل͜ຈ༽┘ ♪
  51.     }
  52.     else {
  53.       msg $chan ヽ༼ຈل͜ຈ༽ノ $upper($2-) RIOT ヽ༼ຈل͜ຈ༽ノ
  54.     }
  55.     timer 1 5 /echo -a riot timer timed out
  56.   }
  57. }
  58.  
  59. on *:TEXT:*ヽ༼ຈل͜ຈ༽ノ*:#:{
  60.   inc %donger
  61.   if (%donger == 100) {
  62.     inc %dngr_hun 100
  63.     set %donger 0
  64.     msg $chan ヽ༼ຈل͜ຈ༽ノ %dngr_hun DONGERS COUNTED THIS SESSION ヽ༼ຈل͜ຈ༽ノ
  65.   }
  66. }
  67.  
  68. on *:TEXT:*riot:#:{
  69.   if (yelnaX !ison $chan) && (DootBot !ison $chan) {
  70.     if ($upper($1) == DANCE) {
  71.       msg $chan ♫ ┌༼ຈل͜ຈ༽┘ ♪ DANCE RIOT ♫ ┌༼ຈل͜ຈ༽┘ ♪
  72.     }
  73.     else {
  74.       msg $chan ヽ༼ຈل͜ຈ༽ノ $upper($1-) ヽ༼ຈل͜ຈ༽ノ
  75.     }
  76.     timer 1 5 /echo -a riot timer timed out
  77.   }
  78. }
  79.  
  80.  
  81. on *:TEXT:!help:#:{
  82.   msg $nick PikalaxALT - mIRC Scripts - (C) 2015
  83.   msg $nick !riot [text] --> I will incorporate [text] into a custom riot, with dongers
  84.   msg $nick [text] riot --> See above
  85.   msg $nick !fist [text] --> I will fist [text]
  86.   msg $nick !hail [text] --> I will issue a call to hail [text]
  87.   msg $nick !later tell [user] [text] --> I will store [text] and play it back the next time [user] speaks.  I can only store one message at a time and will only retain the most recent message.
  88. }
  89.  
  90.  
  91. on *:TEXT:!later tell*:#:{
  92.   if ($3 == $nick) {
  93.     msg $chan ...
  94.   }
  95.   elseif ($3 == $me) {
  96.     msg $chan Say it to my face, $nick.
  97.   }
  98.   else {
  99.     if (%Nmes. [ $+ [ $3 ] ] == $null) {
  100.       set %Nmes. $+ $3 1
  101.     }
  102.     else {
  103.       inc %Nmes. $+ $3
  104.     }
  105.     set %usr. $+ $3 $+ . $+ %Nmes. [ $+ [ $3 ] ] $nick
  106.     set %msg. $+ $3 $+ . $+ %Nmes. [ $+ [ $3 ] ] $4-
  107.     msg $chan Stored message %Nmes. [ $+ [ $3 ] ] for $3.
  108.   }
  109. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement