Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 3.15 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.   elseif $1 == dmchan {
  18.     if $2 != $null {
  19.       set %dmingchan $2
  20.       echo 4[DMBOT]Dming channel set to $2 $+ .
  21.     }
  22.     else {
  23.       echo 4[DMBOT]Please enter a channel.
  24.     }
  25.   }
  26.   elseif $1 == makelist {
  27.     if $2 == help || $2 == $null
  28.     if $2 == specweps && $3 != help {
  29.       if $3 != $null {
  30.         set %specweps $3-
  31.         echo 4[DMBOT]Spec weps: $3-
  32.       }
  33.       else {
  34.         echo 4[DMBOT]/dmbot makelist specweps (list [ex:ags dclaws sgs])
  35.       }
  36.     }
  37.     elseif $2 == rangeweps {
  38.       if $3 != $null && $3 != help {
  39.         set %rangeweps $3-
  40.         echo 4[DMBOT]Range weps: $3-
  41.       }
  42.       else {
  43.         echo 4[DMBOT]/dmbot makelist rangeweps (list [ex:onyx rknives bbolt])
  44.       }
  45.     }
  46.     elseif $2 == mageweps {
  47.     if $3 != $null && $3 != help {
  48.         set %mageweps $3-
  49.         echo 4[DMBOT]Mage weps: $3-
  50.       }
  51.       else {
  52.         echo 4[DMBOT]/dmbot makelist mageweps (list [ex:blood ice smoke])
  53.       }
  54.     }
  55.     elseif $2 == meleeweps {
  56.     if $3 != $null && $3 != help {
  57.         set %meleeweps $3-
  58.         echo 4[DMBOT]Melee weps: $3-
  59.       }
  60.       else {
  61.         echo 4[DMBOT]/dmbot makelist meleeweps (list [ex:dh whip guth])
  62.       }
  63.     }
  64.   }
  65.   elseif $1 == specfirst {
  66.     if $2 == $null {
  67.       if %specfirst == false || %specfirst == $null {
  68.         set %specfirst true
  69.         if $2 == $null && %specificfirstspec != $null {
  70.           unset %specificfirstspec
  71.         }
  72.       }
  73.       elseif %specfirst == true {
  74.         set %specfirst false
  75.         unset %specificfirstspec
  76.       }
  77.     }
  78.     if $2 != $null {
  79.       if %specfirst == false || %specfirst == $null {
  80.         set %specfirst true
  81.         if $2 == $null && %specificfirstspec != $null {
  82.           unset %specificfirstspec
  83.         }
  84.       }
  85.       elseif %specfirst == true {
  86.         set %specfirst false
  87.         unset %specificfirstspec
  88.       }
  89.     }
  90.     if %specfirst == true {
  91.       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.
  92.     }
  93.     elseif %specfirst == false {
  94.       echo 4[DMBOT]You will now not start off with a special attack every game.
  95.     }
  96.   }
  97. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement