Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 3.16 KB | None | 0 0
  1. alias dmbot {
  2.   if $1 == help || $1 == $null {
  3.     echo 4[DMBOT]For help type after the command u need help with
  4.     echo 4[DMBOT]"/dmbot DEFAULT" to set all modes to default
  5.     echo 4[DMBOT]/dmbot (mode) [values]
  6.     echo 4[DMBOT]/dmbot makelist (list) [values]
  7.     echo 4[DMBOT]Modes: (dmchan [chan]), (Specfirst [specific Weapon(optional)])
  8.     echo 4[DMBOT]Lists(no commas just spaces) (specweps [list of weapons to spec with]) (rangeweps [list of range weapons to use(NO SPEC WEPS)]) (mageweps [list of magic attacks to use(NO SPEC WEPS)]) (meleeweps [list of melee weps to use (NO SPEC WEPS)])
  9.   }
  10.   elseif $1 == default {
  11.     set %specweps dds
  12.     set %rangeweps onyx rknives ebolt
  13.     set %mageweps blood ice
  14.     set %meleeweps whip dh guth
  15.     set %specfirst false
  16.     echo 4[DMBOT]Please type "/dmbot dmchan [chan]" to set the channel you want to bot in.
  17.   }
  18.   elseif $1 == dmchan {
  19.     if $2 != $null {
  20.       set %dmingchan $2
  21.       echo 4[DMBOT]Dming channel set to $2 $+ .
  22.     }
  23.     else {
  24.       echo 4[DMBOT]Please enter a channel.
  25.     }
  26.   }
  27.   elseif $1 == makelist {
  28.     if $2 == help || $2 == $null
  29.     if $2 == specweps && $3 != help {
  30.       if $3 != $null {
  31.         set %specweps $3-
  32.         echo 4[DMBOT]Spec weps: $3-
  33.       }
  34.       else {
  35.         echo 4[DMBOT]/dmbot makelist specweps (list [ex:ags dclaws sgs])
  36.       }
  37.     }
  38.     elseif $2 == rangeweps {
  39.       if $3 != $null && $3 != help {
  40.         set %rangeweps $3-
  41.         echo 4[DMBOT]Range weps: $3-
  42.       }
  43.       else {
  44.         echo 4[DMBOT]/dmbot makelist rangeweps (list [ex:onyx rknives bbolt])
  45.       }
  46.     }
  47.     elseif $2 == mageweps {
  48.     if $3 != $null && $3 != help {
  49.         set %mageweps $3-
  50.         echo 4[DMBOT]Mage weps: $3-
  51.       }
  52.       else {
  53.         echo 4[DMBOT]/dmbot makelist mageweps (list [ex:blood ice smoke])
  54.       }
  55.     }
  56.     elseif $2 == meleeweps {
  57.     if $3 != $null && $3 != help {
  58.         set %meleeweps $3-
  59.         echo 4[DMBOT]Melee weps: $3-
  60.       }
  61.       else {
  62.         echo 4[DMBOT]/dmbot makelist meleeweps (list [ex:dh whip guth])
  63.       }
  64.     }
  65.   }
  66.   elseif $1 == specfirst {
  67.     if $2 == $null {
  68.       if %specfirst == false || %specfirst == $null {
  69.         set %specfirst true
  70.         if $2 == $null && %specificfirstspec != $null {
  71.           unset %specificfirstspec
  72.         }
  73.       }
  74.       elseif %specfirst == true {
  75.         set %specfirst false
  76.         unset %specificfirstspec
  77.       }
  78.     }
  79.     if $2 != $null {
  80.       if %specfirst == false || %specfirst == $null {
  81.         set %specfirst true
  82.         if $2 == $null && %specificfirstspec != $null {
  83.           unset %specificfirstspec
  84.         }
  85.       }
  86.       elseif %specfirst == true {
  87.         set %specfirst false
  88.         unset %specificfirstspec
  89.       }
  90.     }
  91.     if %specfirst == true {
  92.       echo 4[DMBOT]You will now special attack with a $iif( $2 == $null , random weapon off of your special attack weapons list , $2 ) for your first attack. Do this command again to turn this mode off.
  93.     }
  94.     elseif %specfirst == false {
  95.       echo 4[DMBOT]You will now not start off with a special attack every game.
  96.     }
  97.   }
  98. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement