Retrieves a boolean value specifying whether an attack missed.
[Visual Basic] Public Function miss( _ ByVal accuracy As Integer, _ ByVal dodge As Integer _ ) As Boolean [C#] public bool miss( int accuracy, int dodge ); [C++] public: bool miss( int accuracy, int dodge ); [JScript] public function miss( int accuracy, int dodge ): bool;
true if the attack missed, false otherwise.
GameRandom Class | croemud.game Namespace