Solved How to add attack and defense multipliers in a game?

Status
Not open for further replies.

Tan22

Solid & Active Platinian
So I recently started learning modding but I am unable find any good tutorials for modding atk and defense in online games. So if u guys have any good tutorials available plz send it to me.
 
I think I understand your question.

For online games, there are sometimes "send" functions, for example "sendAttack" or "sendDamage"
Modders can loop these functions so that they fire 5x or 10x (so damage would be sent to server 5x or 10x instead of just once).

For looping, that's something you'll have to learn in general programming, but I hope I've pointed you in the right direction 😁
 
I think I understand your question.

For online games, there are sometimes "send" functions, for example "sendAttack" or "sendDamage"
Modders can loop these functions so that they fire 5x or 10x (so damage would be sent to server 5x or 10x instead of just once).

For looping, that's something you'll have to learn in general programming, but I hope I've pointed you in the right direction 😁
your answer makes more sense than what i was thinking XD i completly miss read the question lol
 
you look for functions like get_damage, getdamage, getattack, get_attack, sendDamage, ect. Most of the time they return a float too. I've rarely seen int attack damage in a game

armv7 float hex code:
490008E31EFF2FE1

arm64 float hex code;
00F0271E0008201EC0035FD6
 
Status
Not open for further replies.
Back
Top Bottom