CAMBOJA Posted January 11, 2022 at 08:38 PM Share Posted January 11, 2022 at 08:38 PM Alguem poderia me ajudar nessa parte ? Exemplo se eu der o comamdo para aumentar as Rates acima de 100% de Exp , drop e gold não funciona. O maximo é 100 queria muito arhumar isso alguem ajuda ai? tenho a fonte do jogo ------------------------------------------------------------------------------------------------------------------------------- Could anyone help me with this part? Example if I give the command to increase Rates above 100% de Exp , drop e gold does not work. The maximum is 100 I really wanted to fix this, someone help there? I have game source Link to comment
[Admin] tierrilopes Posted January 11, 2022 at 08:47 PM Share Posted January 11, 2022 at 08:47 PM Ficheiro Input.cpp Dentro da função: int CInputHandshake::Analyze Procura por: value = MINMAX (0, value, 100); stResult = "PRIV_EMPIRE FAIL"; Mudas o 100 para por exemplo 1000. value = MINMAX (0, value, 1000); stResult = "PRIV_EMPIRE FAIL"; Ficheiro cmd_gm.cpp Dentro da função: ACMD (do_priv_empire) Procurar por: value = MINMAX (0, value, 100); Mudas o 100 para por exemplo 1000. value = MINMAX (0, value, 1000); Recompilar a source do game. _________ A tua source pode divergir da minha. Caso não encontres os passos acima descritos, procura no ficheiro db/src/PrivManager.cpp Procura por (poderá ser outro valor que não o 200, procura por MINMAX para encontrares): MINMAX(0, value, 200); E muda para por exemplo 1000. MINMAX(0, value, 200); MINMAX(0, value, 200); ___ Caso tenhas o seguinte erro: BONUS exceeded over 100!! Avisa aqui. Link to comment
CAMBOJA Posted January 11, 2022 at 11:59 PM Author Share Posted January 11, 2022 at 11:59 PM Obrigado tierrilopes você me ajudou muito!!!! Problema resolvido. Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now