rendered paste bodyEvent +PlayerSignOn
/SendPM #Source, "Welcome! You've just been Arena Trap'd!"
If #GetPlayerInfo(#Source, HIDE) = 1
/SendPM #Source, "NOTICE: Your team is not hidden, and is visible to all players!"
EndIf
EndEvent
Event -ChatMessage
If $Message = "/Attack"
/StopEvent
/SendAll "Attack roll: " & $Str(#Rand(255, 217))
EndIf
If $Message = "/General"
/StopEvent
/SendAll "General roll: " & $Str(#Rand(255, 0))
EndIf
If $Message = "/Critical"
/StopEvent
/SendAll "Critical roll: " & $Str(#Rand(512,1))
EndIf
If $Message = "/100roll"
/StopEvent
/SendAll "100% roll (254 or lower for success): " & $Str(#Rand(255, 0))
EndIf
If $Message = "/95roll"
/StopEvent
/SendAll "95% roll (241 or lower for success): " & $Str(#Rand(255, 0))
EndIf
If $Message = "/90roll"
/StopEvent
/SendAll "90% roll (228 or lower for success): " & $Str(#Rand(255, 0))
EndIf
If $Message = "/85roll"
/StopEvent
/SendAll "85% roll (215 or lower for success): " & $Str(#Rand(255, 0))
EndIf
If $Message = "/80roll"
/StopEvent
/SendAll "80% roll (203 or lower for success): " & $Str(#Rand(255, 0))
EndIf
If $Message = "/75roll"
/StopEvent
/SendAll "75% roll (190 or lower for success): " & $Str(#Rand(255, 0))
EndIf
If $Message = "/70roll"
/StopEvent
/SendAll "70% roll (177 or lower for success): " & $Str(#Rand(255, 0))
EndIf
If $Message = "/65roll"
/StopEvent
/SendAll "65% roll (164 or lower for success): " & $Str(#Rand(255, 0))
EndIf
If $Message = "/60roll"
/StopEvent
/SendAll "60% roll (152 or lower for success): " & $Str(#Rand(255, 0))
EndIf
If $Message = "/55roll"
/StopEvent
/SendAll "55% roll (139 or lower for success): " & $Str(#Rand(255, 0))
EndIf
If $Message = "/50roll"
/StopEvent
/SendAll "50% roll (126 or lower for success): " & $Str(#Rand(255, 0))
EndIf
If $Message = "/45roll"
/StopEvent
/SendAll "45% roll (113 or lower for success): " & $Str(#Rand(255, 0))
EndIf
If $Message = "/40roll"
/StopEvent
/SendAll "40% roll (101 or lower for success): " & $Str(#Rand(255, 0))
EndIf
If $Message = "/35roll"
/StopEvent
/SendAll "35% roll (88 or lower for success): " & $Str(#Rand(255, 0))
EndIf
If $Message = "/30roll"
/StopEvent
/SendAll "30% roll (75 or lower for success): " & $Str(#Rand(255, 0))
EndIf
If $Message = "/25roll"
/StopEvent
/SendAll "25% roll (62 or lower for success): " & $Str(#Rand(255, 0))
EndIf
If $Message = "/20roll"
/StopEvent
/SendAll "20% roll (50 or lower for success): " & $Str(#Rand(255, 0))
EndIf
If $Message = "/15roll"
/StopEvent
/SendAll "15% roll (37 or lower for success): " & $Str(#Rand(255, 0))
EndIf
If $Message = "/10roll"
/StopEvent
/SendAll "10% roll (24 or lower for success): " & $Str(#Rand(255, 0))
EndIf
If $Message = "/5roll"
/StopEvent
/SendAll "5% roll (11 or lower for success): " & $Str(#Rand(255, 0))
EndIf
If $Message = "/1Sleep"
/StopEvent
/SendAll "1st Turn Sleep (1 for success): " & $Str(#Rand(7, 1))
EndIf
If $Message = "/2Sleep"
/StopEvent
/SendAll "2nd Turn Sleep (2 or lower for success): " & $Str(#Rand(7, 1))
EndIf
If $Message = "/3Sleep"
/StopEvent
/SendAll "3rd Turn Sleep (3 or lower for success): " & $Str(#Rand(7, 1))
EndIf
If $Message = "/4Sleep"
/StopEvent
/SendAll "4th Turn Sleep (4 or lower for success): " & $Str(#Rand(7, 1))
EndIf
If $Message = "/5Sleep"
/StopEvent
/SendAll "5th Turn Sleep (5 or lower for success): " & $Str(#Rand(7, 1))
EndIf
If $Message = "/6Sleep"
/StopEvent
/SendAll "6th Turn Sleep (6 or lower for success): " & $Str(#Rand(7, 1))
EndIf
If $Message = "/Multi"
/StopEvent
/SendAll "Multi hit move (1, 2, 3 = 2 hits; 4, 5, 6 = 3 hits; 7 = 4 hits; 8 = 5 hits): " & $Str(#Rand(8, 1))
EndIf
If $Message = "/Speed"
/StopEvent
/SendAll "Speed Tie Check: (1 for success): " & $Str(#Rand(2, 1))
EndIf
If $Message = "/Metro"
/StopEvent
/SendAll "Metronome: " & $Str(#Rand(164, 1))
EndIf
EndEvent