summaryrefslogtreecommitdiff
path: root/src/map/script.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-02-15 18:22:56 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-02-15 18:22:56 +0000
commit60027d5509cddf09a136261f8a56724b65e2f2b8 (patch)
tree0a77f927c3845855979adb9287d59d37db44bf27 /src/map/script.c
parent3aa7336ae0e7fdd1892f43fb681853483a2e907a (diff)
downloadhercules-60027d5509cddf09a136261f8a56724b65e2f2b8.tar.gz
hercules-60027d5509cddf09a136261f8a56724b65e2f2b8.tar.bz2
hercules-60027d5509cddf09a136261f8a56724b65e2f2b8.tar.xz
hercules-60027d5509cddf09a136261f8a56724b65e2f2b8.zip
- The default packet version is now 8. Clients from November2006 and before can no longer get past the char-server unless you change it back to 7.
- Fixed Storm Gust counter freezing on fourth hit instead of third. - Fixed @homstats not taking into consideration that the stat growth decimals get discarded on level up (so the real minimum/maximum displayed was off). git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9868 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/script.c')
-rw-r--r--src/map/script.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/map/script.c b/src/map/script.c
index e4f7e7e5e..8441763cc 100644
--- a/src/map/script.c
+++ b/src/map/script.c
@@ -6659,25 +6659,6 @@ BUILDIN_FUNC(getgdskilllv)
script_pushint(st, guild_checkskill(g,skill_id));
return 0;
-/*
- int skill_id;
- TBL_PC* sd;
- struct guild* g = NULL;
-
- sd = script_rid2sd(st);
- if( sd == NULL )
- return 0; // needs player attached
-
- skill_id = conv_num(st, script_getdata(st,2));
- if( sd->status.guild_id > 0 )
- g = guild_search(sd->status.guild_id);
- if( g == NULL )
- script_pushint(st, -1);
- else
- script_pushint(st, guild_checkskill(g,skill_id+9999));
-
- return 0;
-*/
}
/// Returns the 'basic_skill_check' setting.