Backstab: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
| Line 15: | Line 15: | ||
Backstabbing is a very powerful skill, dealing a devastating blow to an opponent. Any player wielding a short blade may backstab, though the skill may be practiced to a higher proficiency only by thieves. There are also weapons that affect backstab and could thus allow any class that can wear them to backstab successfully, for example the [[Oblivion]]. Backstabbing attacks against a [[sleep|sleeping]] opponent are always successful. | Backstabbing is a very powerful skill, dealing a devastating blow to an opponent. Any player wielding a short blade may backstab, though the skill may be practiced to a higher proficiency only by thieves. There are also weapons that affect backstab and could thus allow any class that can wear them to backstab successfully, for example the [[Oblivion]]. Backstabbing attacks against a [[sleep|sleeping]] opponent are always successful. | ||
In old code, backstab does 2 to 5.75 x damage | |||
if( dt == gsn_backstab ) | |||
dam *= ( 2 + URANGE( 2, ch->level - ( victim->level / 4 ), 30 ) / 8 ); | |||
[[Category:Skills]] | [[Category:Skills]] | ||
[[Category:Thief Skills]] | [[Category:Thief Skills]] | ||
Latest revision as of 05:50, 2 June 2024
- Syntax:
bs <victim>
Help File
A backstab is a method of attack, used primarily by thieves but able to be utilized by others in some circumstances. Backstab inflicts a tremendous degree of damage on unsuspecting victims if successful. An appropriate weapon type is required to backstab, and if your victim is wounded or suspicious it may not be possible to surprise them. The most important factor in anyone's ability to backstab is to catch the victim when they are unaware of your presence.
Information
Backstabbing is a very powerful skill, dealing a devastating blow to an opponent. Any player wielding a short blade may backstab, though the skill may be practiced to a higher proficiency only by thieves. There are also weapons that affect backstab and could thus allow any class that can wear them to backstab successfully, for example the Oblivion. Backstabbing attacks against a sleeping opponent are always successful.
In old code, backstab does 2 to 5.75 x damage
if( dt == gsn_backstab )
dam *= ( 2 + URANGE( 2, ch->level - ( victim->level / 4 ), 30 ) / 8 );