Initial Upload
Initial Upload
This commit is contained in:
20
_module/nss/elv_swonenter.nss
Normal file
20
_module/nss/elv_swonenter.nss
Normal file
@@ -0,0 +1,20 @@
|
||||
void main()
|
||||
{
|
||||
object oPC = GetEnteringObject();
|
||||
string sPortalFrom = GetLocalString(oPC, "PortalCameFrom");
|
||||
|
||||
/*
|
||||
if( sPortalFrom == "PortalWelcomeToStormwind" )
|
||||
{
|
||||
DeleteLocalString(oPC, "PortalCameFrom");
|
||||
|
||||
object oStormStartObj = GetObjectByTag("elv_stormstartobj");
|
||||
effect eEffect = GetFirstEffect(oStormStartObj);
|
||||
while( GetIsEffectValid(eEffect) )
|
||||
{
|
||||
DelayCommand(0.5f, RemoveEffect(oStormStartObj, eEffect));
|
||||
eEffect = GetNextEffect(oStormStartObj);
|
||||
}
|
||||
}
|
||||
*/
|
||||
}
|
||||
Reference in New Issue
Block a user