
- Venom Splasher always hits (but splash damage targets can still avoid it) - Using autoloot with no arguments now toggles it between @autoloot 0 and @autoloot 100% - Falcon Assault now takes Blitz Beat lv5 as base damage. - Fixed pc_makesavestatus not updating status.option correctly. - Corrected Waterball so that higher levels can do insane amount of hits. - Altered slave behaviour. No more random walking, will stay within 2 cells of their master. - Reverted the Summon Slave behaviour to not adjust level based on number of current slaves. - Coma no longer sends SP to 1. - Updated Meteor so that when level 11 or more is casted, the area over which meteors fall is tripled. - Dark elemental characters are now inmune to Curse. - Fixed sc_data saving to sql buffer building method. Thanks to its_sparky. - Changed the map zone reading from using pow to a bit shift. - Experience has now been changed to unsigned int, and is read as such from the dbs. - Increased HT_DETECTING seek range to 7x7 - Added function map_foreachinrange which actually checks distance of nearing objects (unlike for each in area which uses a square area), may come handy for future code. - Corrected Venom Splasher: Being hit does not cancels it, works at 75% or less of target's HP, being hit normally while under the count has a chance of causing poison. Damage is +400% + 50*lv% git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@5204 54d463be-8e91-2dee-dedb-b68131a5f0ec
28 lines
784 B
C
28 lines
784 B
C
#include "map.h"
|
|
|
|
extern short use_irc;
|
|
|
|
extern short irc_announce_flag;
|
|
extern short irc_announce_mvp_flag;
|
|
extern short irc_announce_shop_flag;
|
|
extern short irc_announce_jobchange_flag;
|
|
|
|
void irc_announce(char *buf);
|
|
void irc_announce_jobchange(struct map_session_data *sd);
|
|
void irc_announce_shop(struct map_session_data *sd,int flag);
|
|
void irc_announce_mvp(struct map_session_data *sd, struct mob_data *md);
|
|
|
|
int irc_parse(int fd);
|
|
void do_final_irc(void);
|
|
void do_init_irc(void);
|
|
void irc_send(char *buf);
|
|
void irc_parse_sub(int fd, char *incoming_string);
|
|
int send_to_parser(int fd, char *input,char key[2]);
|
|
struct IRC_Session_Info {
|
|
int state;
|
|
int fd;
|
|
char username[30];
|
|
char password[33];
|
|
};
|
|
typedef struct IRC_Session_Info IRC_SI;
|