Jump to content
  • 0
Marra

@arealoot PLEASE HELP :D

Question

12 answers to this question

Recommended Posts

  • 0

Then what is @autoloot or @alootid for?  Once the player kills the mob, can just cast greed then that should be it.

I would try to create a command i guess then add a custom greed skill for a 3v3 area. then make it passive with the command skill

Link to comment
Share on other sites

make @itemrain Item_ID Number_of_drop_items

-	script	Haze2	-1,{
Onitemrain:
	[email protected] = atoi( [email protected]_parameters$ );
	[email protected] = atoi( [email protected]_parameters$[1] );
	if ( getitemname( [email protected] ) == "null" ) {
		message strcharinfo(0), "Invalid Item ID";
		end;
	}
	if ( [email protected] <= 0 || [email protected] > 100 )
		[email protected] = 100;
	[email protected] = getbattleflag("area_size");
	getmapxy [email protected]$, [email protected], [email protected], 0;
	while ( [email protected] < [email protected] ) {
		do {
			[email protected] = rand( [email protected], [email protected] );
			[email protected] = rand( [email protected], [email protected] );
		} while( !checkcell( [email protected]$,([email protected][email protected]),([email protected][email protected]),cell_chkpass ) );
		makeitem [email protected], 1, [email protected]$, [email protected] + [email protected], [email protected] + [email protected];
		[email protected]++;
	}
	end;
OnInit:
	bindatcmd "itemrain", strnpcinfo(0) +"::Onitemrain", 60,99;
	end;
}
Link to comment
Share on other sites

hum... I ned comand  :(

 

This command retrieves the item you are in the area of 3x3 exists on multiple servers .. GGRO, TALANRO ETC

Edited by Marra
Link to comment
Share on other sites

hum... I ned comand  :(

 

This command retrieves the item you are in the area of 3x3 exists on multiple servers .. GGRO, TALANRO ETC

 

hErcules have this but in plugin mod...  /sob

Link to comment
Share on other sites

Just make a script at commands that makes character cast greed?

 

He want it passive not active, example:

 

You attack a poring with a swordsman, poring dies and all itens in 3 cells of your range go to your inventory.

You attack a poring with a archer, poring dies but the itens drops in ground because the distance between the poring and the archer is 7 cells.

 

Its a plugin for hercules.

Edited by FXFreitas
Link to comment
Share on other sites

Just make a script at commands that makes character cast greed?

He want it passive not active, example:

You attack a poring with a swordsman, poring dies and all itens in 3 cells of your range go to your inventory.

You attack a poring with a archer, poring dies but the itens drops in ground because the distance between the poring and the archer is 7 cells.

Its a plugin for hercules.

Ah I understand, mb

Link to comment
Share on other sites

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...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.