Initial commit
Adding all of the current content for Anphillia Unlimited.
This commit is contained in:
21
_module/nss/anph_ax_enter.nss
Normal file
21
_module/nss/anph_ax_enter.nss
Normal file
@@ -0,0 +1,21 @@
|
||||
#include "hc_inc"
|
||||
#include "anph_inc"
|
||||
|
||||
void main()
|
||||
{
|
||||
string sTeam;
|
||||
object oPC;
|
||||
|
||||
oPC = GetEnteringObject ();
|
||||
|
||||
sTeam = AnphGetPlayerTeam (oPC);
|
||||
if (sTeam == "Axfell")
|
||||
{
|
||||
object oTarget = GetObjectByTag("AxfellCouncilHallSouth");
|
||||
AssignCommand (oPC, JumpToObject(oTarget));
|
||||
}
|
||||
else
|
||||
{
|
||||
SendMessageToPC (oPC, "A magical force prevents you from entering.");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user