From e865d9496fe8b896082d5f62e73300b1262ddf02 Mon Sep 17 00:00:00 2001 From: Lance Date: Tue, 28 Feb 2006 12:32:02 +0000 Subject: * Added script command 'equip' to equip items. * Fixed dependancies in map-server compiling (VC7.1). git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5400 54d463be-8e91-2dee-dedb-b68131a5f0ec --- Changelog-Trunk.txt | 2 ++ src/map/script.c | 29 +++++++++++++++++++++++++++++ vcproj-7.1/map-server_sql.vcproj | 15 +++++++++++++-- vcproj-7.1/map-server_txt.vcproj | 9 +++++++-- 4 files changed, 51 insertions(+), 4 deletions(-) diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index e8c658999..41420ff35 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -7,6 +7,8 @@ GOES INTO TRUNK AND WILL BE MERGED INTO STABLE BY VALARIS AND WIZPUTER. -- VALAR 2006/02/28 * Rewrote LAN support code. Changed configuration file name lan_support.conf to subnet_athena.conf, changed it syntax. [LuzZza] + * Added script command 'equip' to equip items. [Lance] + * Fixed dependancies in map-server compiling (VC7.1). [Lance] 2006/02/24 * Prevented guild/party recall to work on GMs of greater level than yourself. [Skotlex] diff --git a/src/map/script.c b/src/map/script.c index 34aedaa35..4f99870d4 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -401,6 +401,7 @@ int buildin_setd(struct script_state *st); // <--- [zBuffer] List of dynamic var commands int buildin_petstat(struct script_state *st); // [Lance] Pet Stat Rq: Dubby int buildin_callshop(struct script_state *st); // [Skotlex] +int buildin_equip(struct script_state *st); void push_val(struct script_stack *stack,int type,int val); int run_func(struct script_state *st); @@ -702,6 +703,7 @@ struct { // <--- [zBuffer] List of dynamic var commands {buildin_petstat,"petstat","i"}, {buildin_callshop,"callshop","si"}, // [Skotlex] + {buildin_equip,"equip","i"}, {buildin_setitemscript,"setitemscript","is"}, //Set NEW item bonus script. Lupus {buildin_disguise,"disguise","i"}, //disguise player. Lupus {buildin_undisguise,"undisguise","i"}, //undisguise player. Lupus @@ -9379,6 +9381,33 @@ int buildin_unequip(struct script_state *st) return 0; } +int buildin_equip(struct script_state *st) +{ + int nameid=0,count=0,i; + struct map_session_data *sd; + struct item_data *item_data; + + sd = script_rid2sd(st); + + nameid=conv_num(st,& (st->stack->stack_data[st->start+2])); + if(nameid>=500 && (item_data = itemdb_search(nameid)) != NULL) + for(i=0;istatus.inventory[i].nameid==nameid) + count+=sd->status.inventory[i].amount; + } + else{ + if(battle_config.error_log) + ShowError("wrong item ID : equipitem(%i)\n",nameid); + return 1; + } + + if(count){ + pc_equipitem(sd,nameid,item_data->equip); + } + + return 0; +} + //======================================================= // strlen [Valaris] //------------------------------------------------------- diff --git a/vcproj-7.1/map-server_sql.vcproj b/vcproj-7.1/map-server_sql.vcproj index 196aed45e..646c2eb42 100644 --- a/vcproj-7.1/map-server_sql.vcproj +++ b/vcproj-7.1/map-server_sql.vcproj @@ -171,8 +171,7 @@ RelativePath="..\src\common\db.c"> + RelativePath="..\src\common\ers.c"> @@ -192,6 +191,9 @@ + + @@ -286,6 +288,9 @@ + + @@ -310,6 +315,9 @@ + + @@ -322,6 +330,9 @@ + + diff --git a/vcproj-7.1/map-server_txt.vcproj b/vcproj-7.1/map-server_txt.vcproj index 59844eb92..06d49cb2b 100644 --- a/vcproj-7.1/map-server_txt.vcproj +++ b/vcproj-7.1/map-server_txt.vcproj @@ -171,8 +171,7 @@ RelativePath="..\src\common\db.c"> + RelativePath="..\src\common\ers.c"> @@ -286,6 +285,9 @@ + + @@ -310,6 +312,9 @@ + + -- cgit v1.2.3-70-g09d2