We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Tecnologia de hyperspacio formula diferente, segun ogame es el 2% de aumento por cada nivel
Esta es la que tenemos nosotros return intval($ship_storage + ($ship_storage * 0.05 * $hyperspace_tech_level)); Debería ser Asi
return intval($ship_storage + ($ship_storage * 0.05 * $hyperspace_tech_level));
return intval($ship_storage + ($ship_storage * (($hyperspace_tech_level * 2) / 100)));
Dependiendo el universo cambia el porcentaje
https://s143-ar.ogame.gameforge.com/api/serverData.xml es x5
https://s801-en.ogame.gameforge.com/api/serverData.xml es x2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Tecnologia de hyperspacio formula diferente, segun ogame es el 2% de aumento por cada nivel
Esta es la que tenemos nosotros
return intval($ship_storage + ($ship_storage * 0.05 * $hyperspace_tech_level));
Debería ser Asi
return intval($ship_storage + ($ship_storage * (($hyperspace_tech_level * 2) / 100)));
Dependiendo el universo cambia el porcentaje
https://s143-ar.ogame.gameforge.com/api/serverData.xml es x5
https://s801-en.ogame.gameforge.com/api/serverData.xml es x2
The text was updated successfully, but these errors were encountered: