no message

This commit is contained in:
SilicaAndPina 2020-12-22 19:37:16 +13:00
parent fff0bc7563
commit 3eaac491c8
3 changed files with 24 additions and 12 deletions

View file

@ -9,6 +9,7 @@
"buddy_request":"Attempting to Add Buddy. The other player must click ADD BUDDY as well. (Many players reserve this for just a couple players so don't feel insulted if they do not).", "buddy_request":"Attempting to Add Buddy. The other player must click ADD BUDDY as well. (Many players reserve this for just a couple players so don't feel insulted if they do not).",
"drawing_notice":"Drawing not sent to other players when you are not a subscriber.", "drawing_notice":"Drawing not sent to other players when you are not a subscriber.",
"click_nothing_message":"Nothing interesting here...", "click_nothing_message":"Nothing interesting here...",
"playtime_timeout":"You have run out of playtime for now. In one minute you will be disconnected. You gain one minute of playtime every 8 minutes. Please come back later!",
"sec_code":{ "sec_code":{
"invalid_sec_code":"Data Code Error. You did not get the bonus. You should reconnect if you get this message again.", "invalid_sec_code":"Data Code Error. You did not get the bonus. You should reconnect if you get this message again.",
"item_earned":"You Earned a %ITEM%!" "item_earned":"You Earned a %ITEM%!"
@ -54,6 +55,7 @@
"disconnect":{ "disconnect":{
"banned":"Your account has been BANNED. You will no longer be able to login", "banned":"Your account has been BANNED. You will no longer be able to login",
"dupe_login":"Duplicate Login. Disconnecting Previous.", "dupe_login":"Duplicate Login. Disconnecting Previous.",
"no_playtime":"You have run out of Time for this session. As an unsubscriber you gain one minute of playtime every 8 minutes. Please come back later! ",
"client_timeout":{ "client_timeout":{
"warn_after":10, "warn_after":10,
"kick_after":25, "kick_after":25,
@ -107,16 +109,15 @@
"no_competition_gear":"^LYou have nothing interesting for special competition gear.", "no_competition_gear":"^LYou have nothing interesting for special competition gear.",
"competition_gear_selected":"^LYou have the following selected for competition gear:", "competition_gear_selected":"^LYou have the following selected for competition gear:",
"seriously_hungry":"seriously hungry", "incredibly":"incredibly %STAT%",
"really_hungry":"really hungry", "desprately":"desperately %STAT%",
"hungry":"hungry", "seriously":"seriously %STAT%",
"tiny_bit_thirsty":"a tiny bit thirsty", "really":"really %STAT%",
"little_bit_thirsty":"a little bit thirsty", "normal":"%STAT%",
"kind_of_thirsty":"kind of thirsty", "kind_of":"kind of %STAT",
"thirsty":"thirsty", "little_bit":"a little bit %STAT%",
"tiny_bit_tired":"a tiny bit tired", "tiny_bit":"a tiny bit %STAT%",
"little_bit_tired":"a little bit tired", "not_at_all":"not at all %STAT%"
"not_at_all_tired":"not at all tired"
}, },
}, },
"shop":{ "shop":{
@ -299,7 +300,7 @@
"isle_format":"<B>%USERNAME%:</B> %MESSAGE% [%AMOUNT% on isle]", "isle_format":"<B>%USERNAME%:</B> %MESSAGE% [%AMOUNT% on isle]",
"near_format":"<B>%USERNAME%:</B> %MESSAGE% [%AMOUNT% near]", "near_format":"<B>%USERNAME%:</B> %MESSAGE% [%AMOUNT% near]",
"mod_format":"<FONT COLOR='#880000'><B>%USERNAME%:</B> %MESSAGE%</FONT> [%AMOUNT% mods]", "mod_format":"<FONT COLOR='#880000'><B>%USERNAME%:</B> %MESSAGE%</FONT> [%AMOUNT% mods]",
"admin_format":"<FONT COLOR='#550000'><B>%USERNAME%:</B> %MESSAGE%</FONT> [%AMOUNT% admins]", "admin_format":"<FONT COLOR='#800000'><B>%USERNAME%:</B> %MESSAGE%</FONT> [%AMOUNT% admins]",
"friend_format":"<FONT COLOR='#CC00CC'><B>%USERNAME%:</B> %MESSAGE%</FONT> [%AMOUNT% buds]", "friend_format":"<FONT COLOR='#CC00CC'><B>%USERNAME%:</B> %MESSAGE%</FONT> [%AMOUNT% buds]",
"dm_format":"<FONT COLOR='#0000FF'><B>%FROMUSER%>%TOUSER%:</B> %MESSAGE%</FONT>" "dm_format":"<FONT COLOR='#0000FF'><B>%FROMUSER%>%TOUSER%:</B> %MESSAGE%</FONT>"
}, },
@ -342,6 +343,10 @@
{"word":"my phone","reason_type":"personal_info","match_all":true}, {"word":"my phone","reason_type":"personal_info","match_all":true},
{"word":"phone number","reason_type":"personal_info","match_all":true}, {"word":"phone number","reason_type":"personal_info","match_all":true},
{"word":"home address","reason_type":"personal_info","match_all":true}, {"word":"home address","reason_type":"personal_info","match_all":true},
{"word":"https","reason_type":"personal_info","match_all":true},
{"word":"//","reason_type":"personal_info","match_all":true},
{"word":".com","reason_type":"personal_info","match_all":true},
{"word":".net","reason_type":"personal_info","match_all":true},
{"word":"http","reason_type":"personal_info","match_all":true}, {"word":"http","reason_type":"personal_info","match_all":true},
{"word":"40lb","reason_type":"personal_info","match_all":true} {"word":"40lb","reason_type":"personal_info","match_all":true}
], ],

View file

@ -16,7 +16,6 @@ db_port=3306
map=HI1.MAP map=HI1.MAP
# JSON Format Data # JSON Format Data
gamedata=gamedata.json gamedata=gamedata.json
# Cross-Domain Policy File # Cross-Domain Policy File
@ -36,5 +35,9 @@ enable_word_filter=true
# (NOTE: This feature is also used to filter some less-'bad' words disabling it will allow users to say them!) # (NOTE: This feature is also used to filter some less-'bad' words disabling it will allow users to say them!)
enable_corrections=true enable_corrections=true
# Wether or not to consider all users "Subscribers"
all_users_subscribed=false
# Should print extra debug logs # Should print extra debug logs
debug=false debug=false

View file

@ -21,6 +21,7 @@ namespace HISP.Server
public static string CrossDomainPolicyFile; public static string CrossDomainPolicyFile;
public static bool Debug; public static bool Debug;
public static bool AllUsersSubbed;
public static bool BadWords; public static bool BadWords;
public static bool DoCorrections; public static bool DoCorrections;
@ -92,6 +93,9 @@ namespace HISP.Server
case "crossdomain": case "crossdomain":
CrossDomainPolicyFile = data; CrossDomainPolicyFile = data;
break; break;
case "all_users_subscribed":
AllUsersSubbed = data == "true";
break;
case "enable_corrections": case "enable_corrections":
BadWords = data == "true"; BadWords = data == "true";
break; break;