22 lines
242 B
Plaintext
22 lines
242 B
Plaintext
// Enters character in different position depending on total level
|
|
|
|
|
|
object oPC = GetEnteringObject();
|
|
|
|
|
|
|
|
void main()
|
|
|
|
|
|
|
|
{
|
|
|
|
if(GetHitDice(oPC) >7)
|
|
|
|
AssignCommand(oPC, ActionJumpToObject(GetObjectByTag("WP_AscalonBoat"),FALSE));
|
|
|
|
|
|
}
|
|
|
|
|