Cronous Emulation Server Daemon

GameRandom.miss Method 

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;

Parameters

accuracy
Attacker's accuracy.
dodge
Attackee's dodge

Return Value

true if the attack missed, false otherwise.

See Also

GameRandom Class | croemud.game Namespace