Updated maximum level for Guild Skills

git-svn-id: https://svn.code.sf.net/p/rathena/svn/branches/stable@476 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
celest 2004-12-06 16:48:30 +00:00
parent 917f07c754
commit 8f5ccd9f39
2 changed files with 16 additions and 3 deletions

View File

@ -3,6 +3,7 @@ Date Added
* Updated Chase Walk [celest]
* Added 'checkoption1' and 'checkoption2' script functions - Refer to
/npc/sample/npc_testchkoption.txt for similiar examples [celest]
* Updated maximum level for Guild Skills [celest]
12/5
* Fixed another crash sending updates to disconnected

View File

@ -54,9 +54,21 @@ int guild_skill_get_inf(int id) { // Modified for new skills [Sara]
int guild_skill_get_sp(int id,int lv){ return 0; }
int guild_skill_get_range(int id){ return 0; }
int guild_skill_get_max(int id) { // Modified for new skills [Sara]
if(id==GD_EXTENSION) return 10;
else if(id==GD_REGENERATION) return 3;
else return 1;
switch (id) {
case GD_GUARDUP:
return 3;
case GD_EXTENSION:
return 10;
case GD_LEADERSHIP:
case GD_GLORYWOUNDS:
case GD_SOULCOLD:
case GD_HAWKEYES:
return 5;
case GD_REGENERATION:
return 3;
default:
return 1;
}
}
// ギルドスキルがあるか確認