Elqpal Posted September 12, 2016 Group: Members Topic Count: 16 Topics Per Day: 0.00 Content Count: 66 Reputation: 2 Joined: 09/01/12 Last Seen: October 1, 2018 Share Posted September 12, 2016 Hi rathena! Where i can find the time cooldown of emergency call in source folder? When using the skill the client will display a message about the remaining cooldown time of emergency call. Quote Link to comment Share on other sites More sharing options...
0 iamkevin Posted September 19, 2016 Group: Members Topic Count: 30 Topics Per Day: 0.01 Content Count: 104 Reputation: 3 Joined: 09/15/16 Last Seen: July 20, 2024 Share Posted September 19, 2016 Up for this Quote Link to comment Share on other sites More sharing options...
0 anacondaq Posted September 19, 2016 Group: Members Topic Count: 42 Topics Per Day: 0.01 Content Count: 1096 Reputation: 348 Joined: 02/26/12 Last Seen: May 30, 2023 Share Posted September 19, 2016 Are you talking about skill_cast_db.txt? //-- GD_EMERGENCYCALL 10013,5000,0,0,0,300000,0 Quote Link to comment Share on other sites More sharing options...
0 Elqpal Posted September 27, 2016 Group: Members Topic Count: 16 Topics Per Day: 0.00 Content Count: 66 Reputation: 2 Joined: 09/01/12 Last Seen: October 1, 2018 Author Share Posted September 27, 2016 Not that. I set the cooldown of Emergency Call 2 minutes. When the skill is not already available and the user/guildmaster use it, there's a message that indicate the remaining time/seconds before the skill can use again. Quote Link to comment Share on other sites More sharing options...
0 anacondaq Posted October 2, 2016 Group: Members Topic Count: 42 Topics Per Day: 0.01 Content Count: 1096 Reputation: 348 Joined: 02/26/12 Last Seen: May 30, 2023 Share Posted October 2, 2016 (edited) Not that. I set the cooldown of Emergency Call 2 minutes. When the skill is not already available and the user/guildmaster use it, there's a message that indicate the remaining time/seconds before the skill can use again. cooldown for EC setted in skill_cast_db.txt displaying message showed in guild.c (inside function below) // Blocks all guild skills which have a common delay time. int guild_block_skill_end(int tid, unsigned int tick, int id, intptr_t data) { struct guild *g; char output[128]; int idx = battle_config.guild_skills_separed_delay ? (int)data - GD_SKILLBASE : 0; if( (g = guild_search(id)) == NULL ) return 1; if( idx < 0 || idx >= MAX_GUILDSKILL ) { ShowError("guild_block_skill_end invalid skill_id %d.\n", (int)data); return 0; } if( tid != g->skill_block_timer[idx] ) { ShowError("guild_block_skill_end %d != %d.\n", g->skill_block_timer[idx], tid); return 0; } HERE ---------->>>>> sprintf(output, "%s : Guild Skill %s Ready!!", g->name, skill_get_desc((int)data)); g->skill_block_timer[idx] = INVALID_TIMER; clif_guild_message(g, 0, output, strlen(output)); return 1; } Edited October 2, 2016 by Anacondaqq Quote Link to comment Share on other sites More sharing options...
0 Gerzzie Posted July 19, 2018 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 137 Reputation: 48 Joined: 06/18/12 Last Seen: Friday at 09:25 AM Share Posted July 19, 2018 Is this still available or compatible on our Latest rAthena? Quote Link to comment Share on other sites More sharing options...
0 anacondaq Posted July 20, 2018 Group: Members Topic Count: 42 Topics Per Day: 0.01 Content Count: 1096 Reputation: 348 Joined: 02/26/12 Last Seen: May 30, 2023 Share Posted July 20, 2018 No problem, anyway, if i will have a free time, i will check, maybe i can help you for free with that. Quote Link to comment Share on other sites More sharing options...
Question
Elqpal
Hi rathena! Where i can find the time cooldown of emergency call in source folder?
When using the skill the client will display a message about the remaining cooldown time of emergency call.
Link to comment
Share on other sites
6 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.