Rune_PRC8/_module/nss/opw_jump_aroen.nss
Jaysyn904 d1c309ae63 Initial commit
Initial commit
2024-09-13 09:10:39 -04:00

40 lines
969 B
Plaintext

////////////////////////////////////////////////////////////////////////////////
// Olander's Jumping/Climbing Boots - On Area Enter
// opw_jump_aroen
// By Don Anderson
// dandersonru@msn.com
//
// Allows Climbing and Jumping in Outdoor Areas
//
// Place this in the Area On Enter Event
//
////////////////////////////////////////////////////////////////////////////////
void main()
{
object oPC = GetEnteringObject();
object oMod = GetModule();
object oArea = GetArea(oPC);
//Only Run For Players
if(GetIsPC(oPC) == TRUE)
{
int nInterior = GetIsAreaInterior(oArea);
if(nInterior == FALSE)
{
SetLocalInt(oPC,"ALLOWJUMP",1);
SendMessageToPC(oPC,"This is an Outdoor Area. You can Climb or Jump using boots here.");
return;
}
if(nInterior == TRUE)
{
SetLocalInt(oPC,"ALLOWJUMP",0);
SendMessageToPC(oPC,"This is an Indoor Area. You can NOT Climb or Jump here.");
return;
}
}
}