Monk haste bug
- T3hRedMage
- Eternal War's Mortician (PU)
- Posts: 912
- Joined: Wed Mar 21, 2007 7:59 pm
Monk haste bug
Twelve Motion Stalking Puma is currently a 1 something/ 6 monk/ 10 assassin with haste amulet. I got on DM and destroyed his amulet and made him rebuy it right before me.
Why is this happening? He had the same amulet with 5 monk levels. Does assassin count toward monk now? I'm just confused.
Why is this happening? He had the same amulet with 5 monk levels. Does assassin count toward monk now? I'm just confused.
- T3hRedMage
- Eternal War's Mortician (PU)
- Posts: 912
- Joined: Wed Mar 21, 2007 7:59 pm
- Rary
- Eternal War's Undertaker (DM,Admin)
- Posts: 1735
- Joined: Mon Sep 18, 2006 2:01 pm
- Location: Columbus, Ohio, USA
- Contact:
He should have 6.8 monk levels at level 17 total to have it. The problem with Bioware before is 6.8 was really 6 so it would work. I have to muliple everything by 100 and then do calculations to make sure it comes out good.
When he bought new, did it work or no as well? (Maybe he had old haste ammy?)
Let me do a twice over on that script again.
Thanks for letting me know.
PS: Muze, it should be 1 monk level for every 2.5 total levels.
When he bought new, did it work or no as well? (Maybe he had old haste ammy?)
Let me do a twice over on that script again.
Thanks for letting me know.
PS: Muze, it should be 1 monk level for every 2.5 total levels.
Aha you can't compare it to 2.5, it gets rounded to 2 (I think). Instead, multiply ML by 100, and don't touch TL at all.
The number you get from that needs to be greater then 40 for monk to have haste. 40% of their total levels has to be monk to have haste.
So ML=*100
if(ML/TL > 40 ) allow haste. If they have more then 40% monk, they can have haste.
The number you get from that needs to be greater then 40 for monk to have haste. 40% of their total levels has to be monk to have haste.
So ML=*100
if(ML/TL > 40 ) allow haste. If they have more then 40% monk, they can have haste.
For such a lonely soul, you're having such a nice time.
- Rary
- Eternal War's Undertaker (DM,Admin)
- Posts: 1735
- Joined: Mon Sep 18, 2006 2:01 pm
- Location: Columbus, Ohio, USA
- Contact:
Ahh, yes. Perfect. I bet that is what's happening.Casas wrote:Aha you can't compare it to 2.5, it gets rounded to 2 (I think). Instead, multiply ML by 100, and don't touch TL at all.
The number you get from that needs to be greater then 40 for monk to have haste. 40% of their total levels has to be monk to have haste.
So ML=*100
if(ML/TL > 40 ) allow haste. If they have more then 40% monk, they can have haste.
Ok, then it will need an = too. So: if(ML/TL >= 40) allow haste
Thanks a million.