Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small cargo speed Upgrade (v3.0.0RC) #116

Closed
eX-Arkangel opened this issue May 17, 2016 · 6 comments
Closed

Small cargo speed Upgrade (v3.0.0RC) #116

eX-Arkangel opened this issue May 17, 2016 · 6 comments
Assignees
Labels
Bug Issues that is an error, bug or it is not working as expected Fixed Issues that after being labeled as Bug have been resolved
Milestone

Comments

@eX-Arkangel
Copy link

when you reach impulse drive level 5, it updates its base speed to 10.000 but keeps using the 5.000 original base speed to add the upgraded levels of the drive, so instead of getting 20.000 speed as it should (or basically the same speed as the heavy fighter) with impulse level 5, it only gets 15.000

@BeReal86
Copy link
Member

Thanks for your feedback.

necessary checks were done and confirmed.

@LucasKovacs LucasKovacs added the Bug Issues that is an error, bug or it is not working as expected label May 18, 2016
@LucasKovacs LucasKovacs modified the milestones: v3.0.2, v3.0.1 May 18, 2016
@LucasKovacs LucasKovacs self-assigned this May 18, 2016
@LucasKovacs LucasKovacs modified the milestones: v3.0.1, v3.1.0 May 18, 2016
@LucasKovacs
Copy link
Member

LucasKovacs commented May 19, 2016

@eX-Arkangel I think you made a mistake.
Base speed 1: 5000
Base speed 2: 10000 (Impulse Drive >=5)
Impulse Drive multiplier is 20%

Formula without Impulse drive will be:
base speed + (base speed * combustion drive level * 0.1)
Ex.: 5000 + (5000 * 5 * 0.1) = 7500 final speed

Formula with Impulse drive will be:
base speed 2 + (base speed * impulse drive level * 0.2)
Ex.: 10000 + (5000 * 5 * 0.2) = 15000 final speed

Reference: http://ogame.wikia.com/wiki/Base_Speed

FYI: @BeReal86

@LucasKovacs LucasKovacs removed the Bug Issues that is an error, bug or it is not working as expected label May 19, 2016
@BeReal86
Copy link
Member

BeReal86 commented May 19, 2016

yes, as a reference site and bought it originally OGame base.

sc

Ex.: 10000 + (5000 * 5 * 0.4) = 20000 final speed

According to that picture of my techniques 9
Ex.: 10000 + (5000 * 9 * 0.4) = 28000 final speed

solution theoretically. In general, I do not know is there are different factors

@LucasKovacs
Copy link
Member

Ok, I found the problem, Applying 0.4 doesn't works, because we have to use the base speed 2 in the formula too like this:

Formula without Impulse drive will be:
base speed + (base speed * combustion drive level * 0.1)
Ex.: 5000 + (5000 * 5 * 0.1) = 7500 final speed

Formula with Impulse drive will be:
base speed 2 + (base speed 2 * impulse drive level * 0.2)
Ex.: 10000 + (10000 * 5 * 0.2) = 20000 final speed

@BeReal86
Copy link
Member

Yeah, well that's great. congratulations :)

@LucasKovacs
Copy link
Member

Ok, I'm sending the fix now, this issue was happening also for the bomber and recycler.

LucasKovacs added a commit that referenced this issue May 19, 2016
Other improvements were made too.-
Also fixed for bombers and recyclers, the same bug was there.-
@LucasKovacs LucasKovacs added Bug Issues that is an error, bug or it is not working as expected Fixed Issues that after being labeled as Bug have been resolved labels May 19, 2016
LucasKovacs added a commit that referenced this issue May 19, 2016
Limited to Windows.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug Issues that is an error, bug or it is not working as expected Fixed Issues that after being labeled as Bug have been resolved
Projects
None yet
Development

No branches or pull requests

3 participants