mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-13 11:43:31 +00:00
Non-code .dm files with escapes
This commit is contained in:
@@ -8,7 +8,7 @@
|
|||||||
return
|
return
|
||||||
src << link(config.wikiurl)
|
src << link(config.wikiurl)
|
||||||
else
|
else
|
||||||
src << "\red The wiki URL is not set in the server configuration."
|
src << "<span class='warning'>The wiki URL is not set in the server configuration.</span>"
|
||||||
return
|
return
|
||||||
|
|
||||||
/client/verb/forum()
|
/client/verb/forum()
|
||||||
@@ -20,7 +20,7 @@
|
|||||||
return
|
return
|
||||||
src << link(config.forumurl)
|
src << link(config.forumurl)
|
||||||
else
|
else
|
||||||
src << "\red The forum URL is not set in the server configuration."
|
src << "<span class='warning'>The forum URL is not set in the server configuration.</span>"
|
||||||
return
|
return
|
||||||
|
|
||||||
#define RULES_FILE "config/rules.html"
|
#define RULES_FILE "config/rules.html"
|
||||||
|
|||||||
@@ -48,16 +48,16 @@
|
|||||||
user << "The Wish Granter punishes you for your selfishness, claiming your soul and warping your body to match the darkness in your heart."
|
user << "The Wish Granter punishes you for your selfishness, claiming your soul and warping your body to match the darkness in your heart."
|
||||||
if (!(LASER in user.mutations))
|
if (!(LASER in user.mutations))
|
||||||
user.mutations.Add(LASER)
|
user.mutations.Add(LASER)
|
||||||
user << "\blue You feel pressure building behind your eyes."
|
user << "<span class='notice'>You feel pressure building behind your eyes.</span>"
|
||||||
if (!(COLD_RESISTANCE in user.mutations))
|
if (!(COLD_RESISTANCE in user.mutations))
|
||||||
user.mutations.Add(COLD_RESISTANCE)
|
user.mutations.Add(COLD_RESISTANCE)
|
||||||
user << "\blue Your body feels warm."
|
user << "<span class='notice'>Your body feels warm.</span>"
|
||||||
if (!(XRAY in user.mutations))
|
if (!(XRAY in user.mutations))
|
||||||
user.mutations.Add(XRAY)
|
user.mutations.Add(XRAY)
|
||||||
user.sight |= (SEE_MOBS|SEE_OBJS|SEE_TURFS)
|
user.sight |= (SEE_MOBS|SEE_OBJS|SEE_TURFS)
|
||||||
user.see_in_dark = 8
|
user.see_in_dark = 8
|
||||||
user.see_invisible = SEE_INVISIBLE_LEVEL_TWO
|
user.see_invisible = SEE_INVISIBLE_LEVEL_TWO
|
||||||
user << "\blue The walls suddenly disappear."
|
user << "<span class='notice'>The walls suddenly disappear.</span>"
|
||||||
user.dna.mutantrace = "shadow"
|
user.dna.mutantrace = "shadow"
|
||||||
user.update_mutantrace()
|
user.update_mutantrace()
|
||||||
if("Wealth")
|
if("Wealth")
|
||||||
@@ -171,4 +171,4 @@
|
|||||||
C << "<span class='notice'>You have regenerated.</span>"
|
C << "<span class='notice'>You have regenerated.</span>"
|
||||||
C.visible_message("<span class='warning'>[usr] appears to wake from the dead, having healed all wounds.</span>")
|
C.visible_message("<span class='warning'>[usr] appears to wake from the dead, having healed all wounds.</span>")
|
||||||
C.update_canmove()
|
C.update_canmove()
|
||||||
return 1
|
return 1
|
||||||
|
|||||||
Reference in New Issue
Block a user