Hello. Guys, where to find drop rate / spawn chance/time of items,bosses. Which one files. Checked all war3map.x and didnt found. Plox help ;(
P.S. Was searching with MPQEditor and JassCraft
Where to find?
Moderator: Cheaters
-
- Newcomer
- Posts: 15
- Joined: September 21st, 2014, 5:05 pm
Re: Where to find?
Is it will be hard to do for newbie? Map - twrpgdevoltz wrote:All in war3map.j but every map has a unique system, so you have to find it.
-
- Co-Admin
- Posts: 3133
- Joined: March 23rd, 2016, 8:06 pm
- Has thanked: 11 times
- Been thanked: 53 times
Re: Where to find?
Well, for twrpg, its all in one function (wich items Drop, time of respawn, how many items can Drop)
Do a reverse search with a itemid until u find it. Will be something like:
call dada(dudu'I03W', (10)*(0,1)) (not sure if is this right, wrote on phone).
Do a reverse search with a itemid until u find it. Will be something like:
call dada(dudu'I03W', (10)*(0,1)) (not sure if is this right, wrote on phone).
-
- Newcomer
- Posts: 15
- Joined: September 21st, 2014, 5:05 pm
Re: Where to find?
This one is right? "call FUx(ATv,('cnob'),((6.00)*1.5))" If "1.5" mean drop rate, what means "6.00"?devoltz wrote:Well, for twrpg, its all in one function (wich items Drop, time of respawn, how many items can Drop)
Do a reverse search with a itemid until u find it. Will be something like:
call dada(dudu'I03W', (10)*(0,1)) (not sure if is this right, wrote on phone).
-
- Newcomer
- Posts: 15
- Joined: September 21st, 2014, 5:05 pm
Re: Where to find?
Ahh got it. Thanks a lot. One more question. You made version for me with increased drops. How to change more than one line in a time? Or you did same every line swaping by hand?devoltz wrote:Yes, but in that case, drop rate for this item would be 9% (6*1.5).
-
- Co-Admin
- Posts: 3133
- Joined: March 23rd, 2016, 8:06 pm
- Has thanked: 11 times
- Been thanked: 53 times
Re: Where to find?
On SHDR versions,i do both, because i have some hidden commands to change drops ingame.paskalt wrote:Ahh got it. Thanks a lot. One more question. You made version for me with increased drops. How to change more than one line in a time? Or you did same every line swaping by hand?
But if you want to change all droprate from map, with a single line, search for this one:
Code: Select all
if(h6x or(A3v[Zi*(A6v[(ndv)])+(bcv[xLx])])or h5x>0)and GetRandomReal(0,100)<(1.+gjx((ndv)))*(A2v[Zi*(A6v[(ndv)])+(bcv[xLx])]) then
Code: Select all
if(h6x or(A3v[Zi*(A6v[(ndv)])+(bcv[xLx])])or h5x>0)and GetRandomReal(0,100)<(1.+gjx((ndv)))*(A2v[Zi*(A6v[(ndv)])+(bcv[xLx])]) *2 then //Would be all current drop rates, from every item *2
Code: Select all
if(h6x or(A3v[Zi*(A6v[(ndv)])+(bcv[xLx])])or h5x>0)and GetRandomReal(0,100)<(1.+gjx((ndv)))*(A2v[Zi*(A6v[(ndv)])+(bcv[xLx])]) *35 then // All current drop rate *35
-
- Newcomer
- Posts: 15
- Joined: September 21st, 2014, 5:05 pm