diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-11-27 16:07:09 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-11-27 16:07:09 -0300 |
commit | 443a0aebde0a5ed239367db6bc0ccfd46dd2caf3 (patch) | |
tree | cb4896bb37f1ce66de0976dd15eb4db2f91bd530 | |
parent | 9cb76fe689100b5170048bb0e167f90616930e9f (diff) | |
download | serverdata-443a0aebde0a5ed239367db6bc0ccfd46dd2caf3.tar.gz serverdata-443a0aebde0a5ed239367db6bc0ccfd46dd2caf3.tar.bz2 serverdata-443a0aebde0a5ed239367db6bc0ccfd46dd2caf3.tar.xz serverdata-443a0aebde0a5ed239367db6bc0ccfd46dd2caf3.zip |
Censor Patreon links if you're using the Mirror Lake (Valve Policy).
Instead, point people to TMW2 Contact Page.
-rw-r--r-- | npc/003-0-1/guards.txt | 5 | ||||
-rw-r--r-- | npc/functions/scoreboards.txt | 10 |
2 files changed, 12 insertions, 3 deletions
diff --git a/npc/003-0-1/guards.txt b/npc/003-0-1/guards.txt index b0876a50e..b1e04658c 100644 --- a/npc/003-0-1/guards.txt +++ b/npc/003-0-1/guards.txt @@ -15,7 +15,10 @@ next; mesn; mesq l("Unless you're an Alliance member or have authorization, you cannot go in."); - mesc l("Alliance members are those who [@@https://patreon.com/TMW2|sponsor us@@]."); + if (getvaultid()) + mesc l("Alliance members are those who [@@https://tmw2.org/contact|sponsor us@@]."); + else + mesc l("Alliance members are those who [@@https://patreon.com/TMW2|sponsor us@@]."); mesc l("There's nothing in the Magic Council Room, though. It's just a perk."); close; diff --git a/npc/functions/scoreboards.txt b/npc/functions/scoreboards.txt index d8b8cec2e..f280dc6a4 100644 --- a/npc/functions/scoreboards.txt +++ b/npc/functions/scoreboards.txt @@ -406,7 +406,10 @@ function script HallOfAFK { // HallOfSponsor(minimal=false) function script HallOfSponsor { mes l("This is in honor of all the [@@help://about-server|Contributors@@] who helped rebuilding this world, after the Monster War outbreak."); - mes l("And also in notable mention of those who [@@https://www.patreon.com/TMW2|sponsor@@] the Alliance and its administrative structure."); + if (getvaultid()) + mes l("And also in notable mention of those who [@@https://moubootaurlegends.org/en/community|sponsor@@] the Alliance and its administrative structure."); + else + mes l("And also in notable mention of those who [@@https://www.patreon.com/TMW2|sponsor@@] the Alliance and its administrative structure."); mes ""; mes "Saulc, Woody, Sharli, Povo"; // List previous sponsors? @@ -445,7 +448,10 @@ function script HallOfGame { mes l("Season: %s", .@s$); // weather ; game time ; world story ; etc. mes ""; - mes l("Notable mentions and thanks for our [@@https://www.patreon.com/TMW2|sponsors@@], we wouldn't be here without their continued support."); + if (getvaultid()) + mes l("Notable mentions and thanks for our [@@https://tmw2.org/contact|sponsors@@], we wouldn't be here without their continued support."); + else + mes l("Notable mentions and thanks for our [@@https://www.patreon.com/TMW2|sponsors@@], we wouldn't be here without their continued support."); mes ""; return; } |