summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-05-19 07:46:57 +0000
committerultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-05-19 07:46:57 +0000
commit65772ed9e9415a487bc8658a4626c18b5cfca3b4 (patch)
tree8d2419a1dff06e0383fbff27e1f0c02fc807875d /src
parent1718c0ec0cac0e63a0e3331d2709c930c5818ad9 (diff)
downloadhercules-65772ed9e9415a487bc8658a4626c18b5cfca3b4.tar.gz
hercules-65772ed9e9415a487bc8658a4626c18b5cfca3b4.tar.bz2
hercules-65772ed9e9415a487bc8658a4626c18b5cfca3b4.tar.xz
hercules-65772ed9e9415a487bc8658a4626c18b5cfca3b4.zip
Corrected the problem with countitem2 (value wrapped-around in one case but not in the other, making comparisons fail)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10573 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src')
-rw-r--r--src/map/script.c129
1 files changed, 62 insertions, 67 deletions
diff --git a/src/map/script.c b/src/map/script.c
index 1b996ebcb..6f956e9e8 100644
--- a/src/map/script.c
+++ b/src/map/script.c
@@ -5488,101 +5488,96 @@ BUILDIN_FUNC(viewpoint)
*/
BUILDIN_FUNC(countitem)
{
- int nameid=0,count=0,i;
- TBL_PC *sd;
-
- struct script_data *data;
-
- sd = script_rid2sd(st);
+ int nameid, i;
+ int count = 0;
+ struct script_data* data;
+ TBL_PC* sd = script_rid2sd(st);
if (!sd) {
script_pushint(st,0);
return 0;
}
- data=script_getdata(st,2);
+ data = script_getdata(st,2);
get_val(st,data);
- if( data_isstring(data) ){
- const char *name=conv_str(st,data);
- struct item_data *item_data;
- if( (item_data = itemdb_searchname(name)) != NULL)
- nameid=item_data->nameid;
- }else
- nameid=conv_num(st,data);
+ if( data_isstring(data) ) {
+ const char* name = conv_str(st,data);
+ struct item_data* item_data;
+ if((item_data = itemdb_searchname(name)) != NULL)
+ nameid = item_data->nameid;
+ else
+ nameid = 0;
+ } else
+ nameid = conv_num(st,data);
- if (nameid>=500) //if no such ID then skip this iteration
- for(i=0;i<MAX_INVENTORY;i++){
- if(sd->status.inventory[i].nameid==nameid)
- count+=sd->status.inventory[i].amount;
- }
- else{
- if(battle_config.error_log)
- ShowError("wrong item ID : countitem(%i)\n",nameid);
+ if (nameid < 500) {
+ if(battle_config.error_log) ShowError("wrong item ID : countitem(%i)\n", nameid);
script_pushint(st,0);
return 1;
}
+
+ for(i = 0; i < MAX_INVENTORY; i++)
+ if(sd->status.inventory[i].nameid == nameid)
+ count += sd->status.inventory[i].amount;
+
script_pushint(st,count);
return 0;
}
/*==========================================
* countitem2(nameID,Identified,Refine,Attribute,Card0,Card1,Card2,Card3) [Lupus]
- * returns number of items that met the conditions
- *------------------------------------------
- */
+ * returns number of items that meet the conditions
+ *------------------------------------------*/
BUILDIN_FUNC(countitem2)
{
- int nameid=0,count=0,i;
- int iden,ref,attr,c1,c2,c3,c4;
- TBL_PC *sd;
-
- struct script_data *data;
-
- sd = script_rid2sd(st);
-
+ int nameid, iden, ref, attr, c1, c2, c3, c4;
+ int count = 0;
+ int i;
+ struct script_data* data;
+
+ TBL_PC* sd = script_rid2sd(st);
if (!sd) {
script_pushint(st,0);
return 0;
}
-
- data=script_getdata(st,2);
+
+ data = script_getdata(st,2);
get_val(st,data);
- if( data_isstring(data) ){
- const char *name=conv_str(st,data);
- struct item_data *item_data;
- if( (item_data = itemdb_searchname(name)) != NULL)
- nameid=item_data->nameid;
- }else
- nameid=conv_num(st,data);
-
- iden=script_getnum(st,3);
- ref=script_getnum(st,4);
- attr=script_getnum(st,5);
- c1=script_getnum(st,6);
- c2=script_getnum(st,7);
- c3=script_getnum(st,8);
- c4=script_getnum(st,9);
-
- if (nameid>=500) //if no such ID then skip this iteration
- for(i=0;i<MAX_INVENTORY;i++){
- if(sd->status.inventory[i].nameid<=0 || sd->inventory_data[i] == NULL ||
- sd->status.inventory[i].amount<=0 || sd->status.inventory[i].nameid!=nameid ||
- sd->status.inventory[i].identify!=iden || sd->status.inventory[i].refine!=ref ||
- sd->status.inventory[i].attribute!=attr || sd->status.inventory[i].card[0]!=c1 ||
- sd->status.inventory[i].card[1]!=c2 || sd->status.inventory[i].card[2]!=c3 ||
- sd->status.inventory[i].card[3]!=c4)
- continue;
-
- count+=sd->status.inventory[i].amount;
- }
- else{
- if(battle_config.error_log)
- ShowError("wrong item ID : countitem2(%i)\n",nameid);
+ if( data_isstring(data) ) {
+ const char* name = conv_str(st,data);
+ struct item_data* item_data;
+ if((item_data = itemdb_searchname(name)) != NULL)
+ nameid = item_data->nameid;
+ else
+ nameid = 0;
+ } else
+ nameid = conv_num(st,data);
+
+ iden = script_getnum(st,3);
+ ref = script_getnum(st,4);
+ attr = script_getnum(st,5);
+ c1 = (short)script_getnum(st,6);
+ c2 = (short)script_getnum(st,7);
+ c3 = (short)script_getnum(st,8);
+ c4 = (short)script_getnum(st,9);
+
+ if (nameid < 500) {
+ if(battle_config.error_log) ShowError("wrong item ID : countitem2(%i)\n", nameid);
script_pushint(st,0);
return 1;
}
- script_pushint(st,count);
+
+ for(i = 0; i < MAX_INVENTORY; i++)
+ if (sd->status.inventory[i].nameid > 0 && sd->inventory_data[i] != NULL &&
+ sd->status.inventory[i].amount > 0 && sd->status.inventory[i].nameid == nameid &&
+ sd->status.inventory[i].identify == iden && sd->status.inventory[i].refine == ref &&
+ sd->status.inventory[i].attribute == attr && sd->status.inventory[i].card[0] == c1 &&
+ sd->status.inventory[i].card[1] == c2 && sd->status.inventory[i].card[2] ==c3 &&
+ sd->status.inventory[i].card[3] == c4
+ )
+ count += sd->status.inventory[i].amount;
+ script_pushint(st,count);
return 0;
}