summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-10-05 18:10:54 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-10-05 18:10:54 +0000
commit2e6cfd109a8800433bca0d9060d47eadd0cb8734 (patch)
tree2f31b30e5f415d9d6403176911dc6a9dbe85cc07 /src
parent63efe8b1c659a3b1491321bbfbd0d1731daf8e74 (diff)
downloadhercules-2e6cfd109a8800433bca0d9060d47eadd0cb8734.tar.gz
hercules-2e6cfd109a8800433bca0d9060d47eadd0cb8734.tar.bz2
hercules-2e6cfd109a8800433bca0d9060d47eadd0cb8734.tar.xz
hercules-2e6cfd109a8800433bca0d9060d47eadd0cb8734.zip
- skill_blown will now trigger on-touch npcs on the landing tile.
- Max trade distance has been reduced from 5 to 2. - Undisguising will now resend the cart-contents. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8940 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src')
-rw-r--r--src/map/pc.c6
-rw-r--r--src/map/skill.c4
-rw-r--r--src/map/trade.c11
3 files changed, 16 insertions, 5 deletions
diff --git a/src/map/pc.c b/src/map/pc.c
index 7808bdd9c..a37af8273 100644
--- a/src/map/pc.c
+++ b/src/map/pc.c
@@ -1139,6 +1139,12 @@ int pc_disguise(struct map_session_data *sd, int class_) {
status_set_viewdata(&sd->bl, class_);
clif_changeoption(&sd->bl);
clif_spawn(&sd->bl);
+ if (class_ == sd->status.class_ && pc_iscarton(sd))
+ { //It seems the cart info is lost on undisguise.
+ clif_cartlist(sd);
+ clif_updatestatus(sd,SP_CARTINFO);
+ }
+
return 1;
}
diff --git a/src/map/skill.c b/src/map/skill.c
index 3ec9274d6..98a4e2dc8 100644
--- a/src/map/skill.c
+++ b/src/map/skill.c
@@ -22,6 +22,7 @@
#include "pet.h"
#include "mercenary.h" //[orn]
#include "mob.h"
+#include "npc.h"
#include "battle.h"
#include "party.h"
#include "itemdb.h"
@@ -1770,6 +1771,9 @@ int skill_blown (struct block_list *src, struct block_list *target, int count)
if(!(count&0x20000))
clif_blown(target);
+ if(target->type == BL_PC && map_getcell(target->m,x,y,CELL_CHKNPC))
+ npc_touch_areanpc((TBL_PC*)target,target->m,x,y); //Invoke area NPC
+
return (count&0xFFFF); //Return amount of knocked back cells.
}
diff --git a/src/map/trade.c b/src/map/trade.c
index 23be27700..4d8f4200d 100644
--- a/src/map/trade.c
+++ b/src/map/trade.c
@@ -19,6 +19,8 @@
#include "log.h"
#include "../common/malloc.h"
+//Max distance from traders to enable a trade to take place.
+#define TRADE_DISTANCE 2
/*==========================================
* Initiates a trade request.
@@ -61,8 +63,8 @@ void trade_traderequest(struct map_session_data *sd, struct map_session_data *ta
//Fixed. Only real GMs can request trade from far away! [Lupus]
if (level < lowest_gm_level && (sd->bl.m != target_sd->bl.m ||
- (sd->bl.x - target_sd->bl.x <= -5 || sd->bl.x - target_sd->bl.x >= 5) ||
- (sd->bl.y - target_sd->bl.y <= -5 || sd->bl.y - target_sd->bl.y >= 5))) {
+ !check_distance_bl(&sd->bl, &target_sd->bl, TRADE_DISTANCE)
+ )) {
clif_tradestart(sd, 0); // too far
return ;
}
@@ -93,9 +95,8 @@ void trade_tradeack(struct map_session_data *sd, int type) {
//Copied here as well since the original character could had warped.
if (type == 3 && pc_isGM(target_sd) < lowest_gm_level && (sd->bl.m != target_sd->bl.m ||
- (sd->bl.x - target_sd->bl.x <= -5 || sd->bl.x - target_sd->bl.x >= 5) ||
- (sd->bl.y - target_sd->bl.y <= -5 || sd->bl.y - target_sd->bl.y >= 5)))
- {
+ !check_distance_bl(&sd->bl, &target_sd->bl, TRADE_DISTANCE)
+ )) {
sd->trade_partner=0;
target_sd->trade_partner = 0;
clif_tradestart(sd, 0); // too far