Jump to content

  •  

hideki6

Member Since 18 Nov 2013
Offline Last Active Jun 02 2015 02:40 PM
-----

Topics I've Started

lhz dun mvp drop

27 May 2015 - 11:11 PM

hi i want to make sure that every lhz mvp will drop another item, yet its not working:

 

Onsummon:	// Select Coordinates to summon a random MVP on	switch(rand(1,6)) {	case 1: set .@x,140;	set .@y,232;	break;	case 2: set .@x,75;	set .@y,138;	break;	case 3: set .@x,140;	set .@y,87;		break;	case 4: set .@x,205;	set .@y,140;	break;	case 5: set .@x,123;	set .@y,137;	break;	case 6: set .@x,175;	set .@y,137;	break;	}	set .@mob,rand(1646,1651);	monster "lhz_dun03",.@x,.@y,strmobinfo(1,.@mob),.@mob,1,"summon_boss_lt::OnMyMvPDead";	// Select Coordinates to summon a random 99 on	switch(rand(1,6)) {	case 1: set .@x2,183;	set .@y2,97;	break;	case 2: set .@x2,97;	set .@y2,96;	break;	case 3: set .@x2,47;	set .@y2,139;	break;	case 4: set .@x2,231;	set .@y2,140;	break;	case 5: set .@x2,139;	set .@y2,211;	break;	case 6: set .@x2,139;	set .@y2,259;	break;	}	set .@mob2,rand(1640,1645);	monster "lhz_dun03",.@x2,.@y2,strmobinfo(1,.@mob2),.@mob2,1,"summon_boss_lt::OnMVP";	end;OnMyMvPDead:		if ( .@mob == 1646 ) { getitem 20051,1;}		if ( .@mob == 1647 ) { getitem 20023,1;}			if ( .@mob == 1648 ) { getitem 20075,1;}			if ( .@mob == 1649 ) { getitem 20044,1;}			if ( .@mob == 1650 ) { getitem 20067,1;}			if ( .@mob == 1651 ) { getitem 20045,1;}	killmonster "lhz_dun03","summon_boss_lt::OnMVP";	initnpctimer;	end;//Required to keep from erroringOnMVP:	end;}

the .@mob is the same variable as the thing the script uses to decide which mvp should spawn.

 

thanks in advance!


 


npc handing out rewards for people in the same map and party

19 May 2015 - 05:29 PM

hi,

 

i need a npc which will hand out one item for a player within a party. one player should talk to the npc and choose one of the party members to get the reward, its important that the chosen player has to be on the same map otherwise it shouldnt be working

 

thanks


mvp killer party gets a item

13 May 2015 - 12:33 PM

hi, is there a way to reward a party (or player if he is alone), to reward with an item which only drops once every kill?


 


it should be an item which cant be traded outside of the party. the
idea behind it is, that every mvp kill grants you kafra points, but to
be sure not to abuse it somehow, it shouldnt be tradeable like a normal
item. i also dont want to just add it as a 100% drop to the mvp since
most of the parties have autoloot on and that would only bring the "mvp
killer" the item and since he wouldnt be able to trade it somehow.. meh
=_=.


 


one idea would be to cause the mvp killer after he kills the mvp to
get a menu where he can choose one of this partymembers to get the item,
the condition should be here that the partymember must be on the same
map/spot when the mvp was killed, so no abuse can be done.


 


the other way could be, that the item is dropped and can be traded
within the exact same party for the first 10 minutes and not tradeable
after those 10 minutes


 


thanks in advance!


2010 ragexe language problem

07 May 2015 - 09:06 AM

hi guys,

 

im using a 2010 Client since i just have issues with other Versions and never get it done correctly... the Client works fine and everything is ok. i just have one issue, and it Comes with the message "no language Setting !!!", this error comes two times whenever you start the exe but lets you continue without any negative influence.

 

i think i have some kind of lua missing but im not sure... does anyone know how to fix this? im using 2010-07-30

 

thanks in advance!