summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Sehmisch <crush@themanaworld.org>2009-01-25 20:33:23 +0100
committerPhilipp Sehmisch <crush@themanaworld.org>2009-01-25 20:33:23 +0100
commitbf952256b947e9ac1586382a97d5a161c98afb22 (patch)
tree2b7a08e84914090072f480add2feff06022512cd
parentc014f02719055ce5ec98d9fd0ed9ed2aaeb7b30c (diff)
downloadmanaserv-bf952256b947e9ac1586382a97d5a161c98afb22.tar.gz
manaserv-bf952256b947e9ac1586382a97d5a161c98afb22.tar.bz2
manaserv-bf952256b947e9ac1586382a97d5a161c98afb22.tar.xz
manaserv-bf952256b947e9ac1586382a97d5a161c98afb22.zip
Added lua script binding chr_get_rights for querying the account level of a character.
-rw-r--r--src/scripting/lua.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/scripting/lua.cpp b/src/scripting/lua.cpp
index 5e66bd8a..b9f30f4e 100644
--- a/src/scripting/lua.cpp
+++ b/src/scripting/lua.cpp
@@ -879,6 +879,22 @@ static int chr_give_exp(lua_State *s)
/**
+ * Returns the rights level of a character.
+ * tmw.chr_get_rights (being)
+ */
+static int chr_get_rights(lua_State *s)
+{
+ Character *c = getCharacter(s, 1);
+ if (!c)
+ {
+ raiseScriptError(s, "chr_get_rights called for nonexistent character.");
+ return 0;
+ }
+ lua_pushinteger(s, c->getAccountLevel());
+ return 1;
+}
+
+/**
* Returns the exp total necessary to reach a specific skill level.
* tmw.exp_for_level (level)
*/
@@ -976,6 +992,7 @@ LuaScript::LuaScript():
{ "chr_get_post", &chr_get_post },
{ "chr_get_exp", &chr_get_exp },
{ "chr_give_exp", &chr_give_exp },
+ { "chr_get_rights", &chr_get_rights },
{ "exp_for_level", &exp_for_level },
{ "monster_create", &monster_create },
{ "being_type", &being_type },