Jump to content
  • 0

Spawn mobs on Castle as Guardians


saiexe

Question


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  3
  • Reputation:   1
  • Joined:  07/16/18
  • Last Seen:  

Hi, I would like to ask if theres a script that i can use mobs to spawn in castle and use them as guardian of castle owner? Been looking around on scripts and find a thread bout 7years ago

I've tried using it on my emulator and cant seem to make this one work

Any advice regarding this?

-	script	spawn_woe	-1,{
OnAgitStart:// when woe start
	sleep 2;
	for( .@i = 0; .@i < .size_mob; .@i++ ) {
		for( .@j = 0; .@j < .size_map; .@j++ ) {
			if( GetCastleData( .map_woe$[.@j],1 ) ) {
				for( .@k = 0; .@k < .mob_count[.@i]; .@k++ )
					guardian .map_woe$[.@j],0,0,"--ja--", .mob_ID[.@i];
			}
			else
				monster .map_woe$[.@j],0,0,"--ja--", .mob_ID[.@i], .mob_count[.@i],"";
		}
	}
	end;
OnAgitEnd:// when woe end
	sleep 2;
	for( .@i = 0; .@i < .size_map; .@i++ ) {
		sleep2 1;
		killmonsterall .map_woe$[.@i];
	}
	end;
OnNPCKillEvent:
	sleep2 1;
	if( agitcheck() && compare( .mob_id_c$, killedrid +"" ) && compare( .map_woe_c$, strcharinfo(3) ) ) {// check is woe on + if mob in .mob_ID list + map in .map_woe$ list
		if( GetCastleData( strcharinfo(3),1 ) )
			guardian strcharinfo(3),0,0,"--ja--", killedrid;
		else
			monster strcharinfo(3),0,0,"--ja--", killedrid,1,"";
	}
	end;

OnInit:
// ------- setting
	setarray .mob_ID, 1638, 1639; // add more mob id
	setarray .mob_count, 40, 40;// number of mobs summoned / .mob_ID array column
	setarray .map_woe$, "prtg_cas01", "prtg_cas02"; // yours woe map
//-------- end of setting
	.size_mob = getarraysize( .mob_ID );
	.size_map = getarraysize( .map_woe$ );
	for( .@i = 0; .@i < .size_mob; .@i++ )
		.@tmp$[.@i] = .mob_ID[.@i];
	.mob_id_c$ = implode( .@tmp$, "|" );
	.map_woe_c$ = implode( .map_woe$, "|" );
	end;
}
Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...