Cronous Emulation Server Daemon

Player.can_use_skill Method 

Checks whether the player can use a skill.

[Visual Basic]
Public Function can_use_skill( _ 
   ByVal s As Skill, _ 
   ByVal c As Character _ 
) As Boolean
[C#]
public bool can_use_skill(
   Skill s,
   Character c
);
[C++]
public: bool can_use_skill(
   Skill* s,
   Character* c
);
[JScript]
public function can_use_skill(
   Skill s,
   Character c
): bool;

Parameters

s
The skill to use.
c
Target character.

Return Value

true if the skill can be used, false otherwise.

See Also

Player Class | croemud.game Namespace