Year of the Dragon: Through April 23rd, claim the adventure pack Slice of Life for free! Speak to Xatheral in the Hall of Heroes.

Game mechanicsNewbie guideIn developmentDDO StoreSocial Media


ChallengesClassesCollectablesCraftingEnhancementsEpic DestiniesFavorFeats

GlossaryItemsMapsMonstersPlacesQuestsRacesReincarnationSkillsSpells


Please create an account or log in to build a reputation and unlock more editing privileges, and then visit DDO wiki's IRC Chat/Discord if you need any help!

User:Technical 13/SandBox/mIRC scripts/Ruletka

From DDO wiki
Jump to navigation Jump to search
⇑   ⇑   Back to top   ⇑   ⇑
General   Journal   Sand Box   To Do List   Characters   Quest List   Crafting   Talk  



 


;--- Russian Roulette ---
on *:TEXT:!Ruletka:# {
  if (%quote.flood == $null) {
    if (%RR_PlayerList === 1, $nick) {
      if (($nick isop $chan) || ($nick ishop $chan) || ($nick isvoice $chan)) {
        /ame thinks $nick is lucky they have power...
      }
      else {
        /notice $nick What are you trying to do?  Commit suicide?  Fine, wish granted, but don't waste $me $+ 's time!
        /kick $chan $nick $nick commited suicide.  Guess $nick didn't know it was dumb to play Russian Roulette alone.
      }
      /unset %RR_*
      /timerRR? off
    }
    else {
      if (%RR_PlayerList == $null) {
        /set -u300 %RR_Cylinder $rand(1,6)
        /set -u300 %RR_PlayCounter 1
        /set -u300 %RR_PlayerList %RR_PlayCounter $+ $chr(44) $+ $chr(32) $+ $nick
        /notice $me $nick rolled a %RR_Cylinder in !RR game.
      }
      else {
        /inc -u300 %RR_Playcounter
        /set -u300 %RR_PlayerList %RR_PlayerList $+ $chr(44) $+ $chr(32) $+ %RR_PlayCounter $+ $chr(44) $+ $chr(32) $+ $nick
      }
      if (%RR_PlayCounter == %RR_Cylinder) {
        /ame says $nick played Russian Roulette and LOST!!!
        if (($nick !isop $chan)) { /kick $chan $nick $nick played Russian Roulette and lost! }
        /unset %RR_*
        /timerRR? off
      }
      else {
        /ame says $nick played Russian Roulette and is safe this time!
        /timerRR1 1 299 /ame is not suprised no-one want to play silly suicidal game with $nick $+ .
        /timerRR2 1 300 /notice $nick Sorry, no-one want to play silly suicidal game with you.
        /timerRR3 1 301 /notice $me Russian Roulette variables cleared: Incomplete game.
      }
    }
  }
  /set -u2 %quote.flood on
}