summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgumi <git@gumi.ca>2020-08-06 01:35:38 +0000
committergumi <git@gumi.ca>2020-08-06 01:35:38 +0000
commit09374a4e70c408d22e1396a5bfa43f53f8f2b969 (patch)
tree4e2ed79af927129f8af46471407f8ef9405ee78c
parent2e2b10d60a0b9c3f4041cad898674854df3ca082 (diff)
parent74095c71e2c37426467057a89992968be0ccb263 (diff)
downloadserverdata-09374a4e70c408d22e1396a5bfa43f53f8f2b969.tar.gz
serverdata-09374a4e70c408d22e1396a5bfa43f53f8f2b969.tar.bz2
serverdata-09374a4e70c408d22e1396a5bfa43f53f8f2b969.tar.xz
serverdata-09374a4e70c408d22e1396a5bfa43f53f8f2b969.zip
Merge branch 'jesusalva/rules' into 'master'
Update game rules See merge request evol/serverdata!256
-rw-r--r--npc/functions/game-rules.txt19
1 files changed, 12 insertions, 7 deletions
diff --git a/npc/functions/game-rules.txt b/npc/functions/game-rules.txt
index 0a9f6569..053bec03 100644
--- a/npc/functions/game-rules.txt
+++ b/npc/functions/game-rules.txt
@@ -1,24 +1,29 @@
// Evol scripts.
// Authors:
+// The Mana World Team
+// Co-Authors:
// gumi
// Qwerty Dragon
// Reid
// WildX
// Description:
-// 7 main rules of Evol Online.
+// 7 main rules of The Mana World
function script GameRules {
- if (checkweight(BookOfLaws, 1) == true && countitem(BookOfLaws) < 1)
- getitem BookOfLaws, 1; // give the book if the player lost it
-
narrator getarg(0, 0),
- l("1. ##BDo not bot##b, this means you are not allowed to perform any AFK (away from keyboard) activity, apart from standing idle."),
+ l("1. ##BDo not AFK bot##b, this means you are not allowed to perform any AFK (away from keyboard) activity, apart from standing idle."),
l("2. ##BDo not use offensive/rude language##b in the chats or in your character(s) name(s)."),
l("3. ##BDo not spam/flood other players.##b This includes chat spam and spam by trade requests."),
l("4. ##BSpeak only English in public areas.##b You can speak whatever language you want through whispers or whenever everyone in the area can speak said language."),
l("5. ##BDo not beg others##b for money, items or favours of any kind. If you want to ask for something, do it politely and only once. Try not to annoy other players."),
- l("6. ##BFollow the [@@http://wiki.evolonline.org/rules/esc|ESC@@]##b (Evol Social Convention)."),
- l("7. ##BDo not multibox.##b You are not allowed to engage in combat while controlling more than one character at a time.");
+ l("6. ##BDo not multibox.##b You are not allowed to engage in combat while controlling more than one character at a time."),
+ l("7. ##BFollow the [@@https://policies.themanaworld.org/tsc|TMW Social Convention@@]##b (TSC)."),
+ l("In the event that the rules diverge from [@@https://policies.themanaworld.org/game-rules|policies.themanaworld.org@@], the later version takes priority.");
+ if (SERVER_USES_VAULT) {
+ mesc l("Note: You are NOT allowed to have multiple Vault accounts.");
+ if (getarg(0, 0) & S_LAST_NEXT)
+ next;
+ }
return;
}