Milva

Moderator
Milva submitted a new resource:

CEO Moongate Library - Moongate, Public, custom

This would be an easy in game location to add for a custom location moongate.
Set the gate to no decay in the script
// DecayTimer Stuff
private bool m_Decays = true;<<<<change to false
private DateTime m_DecayEnd;

If you don't wish to charge for the gate being used-change in props also


Keep the runebooks in a safe place-your bank or container locked down :)

[props the gate
This will show the gate is set not to decay
Also set the gate to Active


Once you have your rune location marked and in the runebook...

Read more about this resource...
 
Is there a way to make the moongate library accept young players? Right now it works as a GM but doesn't let young players use it.
 
Has been quite some time with using this- with a quick search in the script I found this for young
PlayerMobile pm = m as PlayerMobile;
if (Insensitive.Contains(securitystring, "YOUNGONLY") && (!(pm.Young)))
return false;
if (Insensitive.Contains(securitystring, "NOYOUNG") && ((pm.Young)))
return false;
return true;
I'm not quite sure what these 2 lines exactly mean-I do know that unless public moongate is changed young can't travel to Fel.
 
Back