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) >= 15) && (GetHitDice(oClicker) <= 15)) {
|
||
|
AssignCommand( oClicker, JumpToLocation( lLoc ) );
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|