Requesting a Bio Cannibalism Like skill for Acolyte

Reqkid

New member
Messages
4
Points
0
Hi! can i request for a skill that is same as bio cannibalism to acolyte classes? thanks =) 

 
What monster are you looking to have the Acolyte summon? Do you want this custom skill to be accessable by both Priest and Monk types or just Priests?

 
Hi Sir Rytech! The skill should be only used by Priest Classes.

Level 1 : Mobid#1681

Level 2: Mobid#1372

Level 3: Mobid#2332


Level 4: Mobid#1637

 
They are only available to summon Max 6  but when using the skill only 1 mob should appear.


 
Last edited by a moderator:
Hi! I hope that it is right.. But how could I limit it that the max allowed spawn of the summoned mobs is 6.

Code:
case PR_SUMMON_SPIRIT:		{			int summon1[5]={ 2083, 2084, 2085, 2086, 2087};			int class_ = skillid==PR_SUMMON_SPIRIT?summon1[skilllv-1]:summon1[skilllv-1];			struct mob_data *md;			// Correct info, don't change any of this! [celest]			md = mob_once_spawn_sub(src, src->m, x, y, status_get_name(src),class_,"");			if (md) {				md->master_id = src->id;				md->special_state.ai = 1;				if( md->deletetimer != INVALID_TIMER )					delete_timer(md->deletetimer, mob_timer_delete);				md->deletetimer = add_timer (gettick() + skill_get_time(skillid,skilllv), mob_timer_delete, md->bl.id, 0);				mob_spawn (md); //Now it is ready for spawning.				sc_start4(&md->bl, SC_MODECHANGE, 100, 1, 0, MD_AGGRESSIVE, 0, 60000);			}		}		break;
 
Back
Top