I'm making a game that is like Kids Quest RPG by Big-Red-Button and Hero by FaceOS.
Anyways, I need help with several scripts.
Script One: How do you make it so that when you are a higher level (I got a varible for that), the enemy become more vunuable to your attacks?
Script 2: How do I make it so that enemys go towards the player and so that they bounce back when hit by the sword?
Offline
For script one, I would change the enemy's health by damage proportional to your level. For instance:
change [enemy_health] by ((-1) * (my_level))For bouncing:
Forever if <touching [sword]?> point towards [main-character] move (-20) steps end
Offline