From 00163cbb0bdf654bfc8a04ef9e7f5e9f2efad706 Mon Sep 17 00:00:00 2001 From: eathenabot Date: Tue, 17 Jan 2012 06:53:19 +0000 Subject: * Merged changes up to eAthena 15061. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15477 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/atcommand.c | 19 ++----------------- src/map/clif.c | 27 +++------------------------ src/map/clif.h | 1 - src/map/party.c | 5 +++++ 4 files changed, 10 insertions(+), 42 deletions(-) (limited to 'src/map') diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 95df2d959..78cd7a6a9 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -7174,19 +7174,8 @@ ACMD_FUNC(mobinfo) /*========================================= * @showmobs by KarLaeda -* => For 5 sec displays the mobs on minimap +* => For 15 sec displays the mobs on minimap *------------------------------------------*/ -int atshowmobs_timer(int tid, unsigned int tick, int id, intptr_t data) -{ - struct map_session_data* sd = map_id2sd(id); - if( sd == NULL ) - return 0; - - // remove indicator - clif_viewpoint(sd, 1, 2, 0, 0, (int)data, 0xFFFFFF); - return 1; -} - ACMD_FUNC(showmobs) { char mob_name[100]; @@ -7240,8 +7229,7 @@ ACMD_FUNC(showmobs) continue; // hide mobs waiting for respawn ++number; - clif_viewpoint(sd, 1, 1, md->bl.x, md->bl.y, number, 0xFFFFFF); - add_timer(gettick()+5000, atshowmobs_timer, sd->bl.id, number); + clif_viewpoint(sd, 1, 0, md->bl.x, md->bl.y, number, 0xFFFFFF); } mapit_free(it); @@ -9372,9 +9360,6 @@ void do_init_atcommand() { atcommand_doload(); - add_timer_func_list(atshowmobs_timer, "atshowmobs_timer"); - - return; } void do_final_atcommand() { diff --git a/src/map/clif.c b/src/map/clif.c index 9f80ba8db..2676499fe 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -6217,27 +6217,6 @@ int clif_hpmeter(struct map_session_data *sd) return 0; } -/*========================================== - * (?) Server tells 'sd' party members that 'sd' state 'changed' - *------------------------------------------*/ -void clif_party_move(struct party* p, struct map_session_data* sd, int online) -{ - unsigned char buf[128]; - - nullpo_retv(sd); - nullpo_retv(p); - - WBUFW(buf, 0) = 0x104; - WBUFL(buf, 2) = sd->status.account_id; - WBUFL(buf, 6) = 0; - WBUFW(buf,10) = sd->bl.x; - WBUFW(buf,12) = sd->bl.y; - WBUFB(buf,14) = !online; - memcpy(WBUFP(buf,15),p->name, NAME_LENGTH); - memcpy(WBUFP(buf,39),sd->status.name, NAME_LENGTH); - mapindex_getmapname_ext(map[sd->bl.m].name, (char*)WBUFP(buf,63)); - clif_send(buf,packet_len(0x104),&sd->bl,PARTY); -} /*========================================== * Server tells client to attack bl, if not in range of attack (rhw.range) it'll move to bl * called from unit.c @@ -13994,7 +13973,7 @@ void clif_bg_hp(struct map_session_data *sd) { unsigned char buf[34]; const int cmd = 0x2e0; - nullpo_ret(sd); + nullpo_retv(sd); WBUFW(buf,0) = cmd; WBUFL(buf,2) = sd->status.account_id; @@ -14017,7 +13996,7 @@ void clif_bg_hp(struct map_session_data *sd) void clif_bg_xy(struct map_session_data *sd) { unsigned char buf[36]; - nullpo_ret(sd); + nullpo_retv(sd); WBUFW(buf,0)=0x2df; WBUFL(buf,2)=sd->status.account_id; @@ -14032,7 +14011,7 @@ void clif_bg_xy(struct map_session_data *sd) void clif_bg_xy_remove(struct map_session_data *sd) { unsigned char buf[36]; - nullpo_ret(sd); + nullpo_retv(sd); WBUFW(buf,0)=0x2df; WBUFL(buf,2)=sd->status.account_id; diff --git a/src/map/clif.h b/src/map/clif.h index a616450ba..4162905be 100644 --- a/src/map/clif.h +++ b/src/map/clif.h @@ -497,7 +497,6 @@ void clif_party_inviteack(struct map_session_data* sd, const char* nick, int res void clif_party_option(struct party_data *p,struct map_session_data *sd,int flag); void clif_party_withdraw(struct party_data* p, struct map_session_data* sd, int account_id, const char* name, int flag); void clif_party_message(struct party_data* p, int account_id, const char* mes, int len); -void clif_party_move(struct party* p, struct map_session_data* sd, int online); void clif_party_xy(struct map_session_data *sd); void clif_party_xy_single(int fd, struct map_session_data *sd); void clif_party_hp(struct map_session_data *sd); diff --git a/src/map/party.c b/src/map/party.c index 0ddf5c9b9..377d467cb 100644 --- a/src/map/party.c +++ b/src/map/party.c @@ -1174,6 +1174,11 @@ void party_booking_register(struct map_session_data *sd, short level, short mapi pb_ad = create_party_booking_data(); idb_put(party_booking_db, sd->status.char_id, pb_ad); } + else + {// already registered + clif_PartyBookingRegisterAck(sd, 2); + return; + } memcpy(pb_ad->charname,sd->status.name,NAME_LENGTH); pb_ad->starttime = (int)time(NULL); -- cgit v1.2.3-70-g09d2