16 lines
276 B
Plaintext
16 lines
276 B
Plaintext
|
|
|
|
void main() {
|
|
|
|
|
|
object oClicker = GetClickingObject();
|
|
object oTarget = GetTransitionTarget( OBJECT_SELF );
|
|
location lLoc = GetLocation( oTarget );
|
|
if ((GetHitDice(oClicker) >= 30) && (GetHitDice(oClicker) <= 15)) {
|
|
AssignCommand( oClicker, JumpToLocation( lLoc ) );
|
|
|
|
}
|
|
}
|
|
|
|
|