Leveling Attacks/Spells: Difference between revisions
No edit summary |
|||
| (3 intermediate revisions by the same user not shown) | |||
| Line 69: | Line 69: | ||
Some use a relative value, derived by some logic, that usually had to do with your level, the mobs level, maybe some stats, etc. | Some use a relative value, derived by some logic, that usually had to do with your level, the mobs level, maybe some stats, etc. | ||
You can see some real examples of how shit works in game code in [[Game Code Examples]] | |||
Latest revision as of 03:44, 5 August 2026
As you level up you will frequently gain new attacks and spells and frequently questions come up about how to use those, which to use, etc.
Learning/Adepting
To view your full skills list type 'slist'
To view your current skills/spells, and the percentage at which you have adepted them, type 'prac' (practice)
You'll notice that when you first learn a new thing you are only like 15% adept at it.
As such, it will fail most of the time when you attempt it. Just keep doing it, and eventually that number will rise and it'll work more often. (Yes, even failed attempts do count towards raising your adeptness). Adepting skills/spells is rather a bitch and it can take a lot of time to get them all to maximum adeptness. Really you just need the ones you use fully adepted, and those will be your combat skills and basic functionality stuff like search/track/scan etc.
You'll notice that some spells or skills seem to fail a LOT even once you are more adept at them, that's likely because the mob you're trying it upon is resistant or fully immune to that skill. For example, not all mobs can be subject to the 'weaken' spell, you cannot 'steal' from all mobs, etc. Figuring out what works on which mobs is part of learning your way in the realms.
Passive Skills
Some spells don't require any manual usage, they 'just happen'. Things like '2nd attack' for example, just happen, and you'll notice those becoming more adept and yourself landing more melee attacks over time, it typically doesn't take very long at all.
Combat & Experience
Experience points (xp) is awarded based on several factors, but the prime one is how much damage you actually deal to the mob.
So, in most cases your highest level attack will deal the most damage, so just use that. But for some cases, mostly pertaining to magical spell attacks, certain spells just hit harder regardless of their level. It can also be based on the mobs resistances/susceptabilities - if you hit an ice mob with a fire attack it might smack the shit out of it for super good xp, but you have to test because you really don't know - and 99% of the time your highest level attack will still be best anyways, which is kinda of a bummer.
Overall there is very minimal 'strategy' built into the skill/spell attacks, they don't really 'do' anything different they just hit and you should just use whichever thing hits the hardest. You can determine the strength of the damage you are doing by the descriptor used, see Damage Descriptors
Several years ago the immortal Edmond changed how experience points work, he provided the info on this rodpedia page which I really don't understand whatsoever: Experience Ratings
For a better discussion on leveling quickly, I'll make another page, because its pretty dumb and you shouldn't put much thought into it.
Physical Attacks
You should just use your highest level attack you have. The flavor of the attack really doesn't matter, so its not strategic. There is no difference between strike, swat, uppercut, etc. They just do progressively more damage, there are no other differences in how they hit the mob.
In SOME cases an attack can do more than just damage.
- Gouge has a chance to also blind the mob for a few rounds
- Bash will cause 4 bar lag to the mob
- Wasp Talon has a chance to poison the mob
There are not a ton of these, and their help files make it pretty clear, but ask on chat channel if you have questions.
Magical Attacks
Usually you just use your highest level magic attack - but with magic there are someeee slight variances compared to physical attacks.
- For clerics, if you turn evil align, the spell 'necromantic touch' is fucking game breaking to level with, you must turn evil and use that or you are a fool who is wasting so much time.
- For mages, the spell 'caustic touch' gets the most xp so once you get that stick with it as you level up, the higher level spells won't garner as much xp.
Otherwise, each type of magic attack will output a different type of magical damage - for example energy, cold, holy, etc. Mobs may be resistant or susceptible to those. See Resistances for a full list and more info. Only SOMETIMES will this actually matter, in the vast majority of cases it doesn't matter and you should just hit with your highest level attack spell.
Spelldowns
For spelldowns, you'll quickly notice that they won't work on every mob. Many are immune entirely, many are resistant.
It can be tricky when you first learn a new spelldown to determine if the problem is you are just not adept enough at it yet, or if the mob you are trying it upon is immune/resistant. Best suggestion there is to try it on different mobs, find one where it works, and use that mob to become more adept at it. Once you've adepted it to a high percentage, then if you try it like twice on a mob and it doesn't land you can be pretty sure the mob is immune/resistant.
There are also spelldowns that make the mob more susceptible to other spelldowns.... For example, the Nephandi class is entirely based upon this and if you cast all the 'neph downs' on a mob you can then land a bunch of shit that wouldn't normally land. Basic example, Neph's get 'petrification' which makes mobs susceptible to paralysis, and then you can land things like a Mages 'immobilize' when you normally could not.
Mechanics
Each attack, physical or magic, is individually coded. So, they all work slightly differently.
Some use a strict hardcoded table for damage that scales with your level. So, if you cast 'fart' at level 10 it'll do 100 damage, and at level 20 it'll do 200 damage.
Some use a relative value, derived by some logic, that usually had to do with your level, the mobs level, maybe some stats, etc.
You can see some real examples of how shit works in game code in Game Code Examples