Reset Password
Existing players used to logging in with their character name and moo password must signup for a website account.
- Vanashis 1m
- Burgerwolf 5m PANCAKES
- AdamBlue9000 9m Rolling 526d6 damage against both of us.
- RedProtokoll 7s
- Shiek 16m
- F9DFCQ 31s
- Sivartas 44s
g Logic 32m
- adrognik 18m
- SolBrother 4m
- JanekSembilan 14m
- aethertm 22s
- Jengris 8m
- Emily 19m I lost myself, in the dark charade.
- Slyter 9m
a Mench 1h Doing a bit of everything.
- zxq 2m
j Fengshui 51m
- Veleth 9s Vampires don't sparkle.
- NightHollow 2h
- Cword 9m
- Diamond 6s After Winter, must come Spring.
And 18 more hiding and/or disguised
Connect to Sindome @ moo.sindome.org:5555 or just Play Now

Disease scripts
Bad news bears announce their arrival

Before I lean into these too much, anyone want to tell me if I'm doing this completely wrong?

// Common Cold disease script

uses $play_script

as %player

start "symptom"

label "symptom"

random "type" 4

if equals %type 1

start "symptom_a"

elseif equals %type 2

start "symptom_b"

elseif equals %type 3

start "symptom_c"

elseif equals %type 4

start "symptom_d"

endif

label "symptom_a"

tell %npc "You feel the dull throb of a sinus headache, and general achiness in your body.

stop

label "symptom_b"

tell %npc "Your throat feels scratchy and sensitive, and fatigue weighs on you."

stop

label "symptom_c"

tell %npc "You sense the tingle of a sneeze coming on..."

pause for 10 seconds

force %npc ".sneeze!"

stop

label "symptom_d"

tell %npc "You feel run down and tired, and the need to cough."

stop

This is great!