How to Restrict spawning to a Certain Place
What this does is restrict spawning to wherever you want just replace "duelarena" with whatever you like
so open up vb or whatever you like and look for /wServer/realm/AdminCommands.cs
look for and add the code below
and heres the code you add
Hope this helps
so open up vb or whatever you like and look for /wServer/realm/AdminCommands.cs
look for and add the code below
Code
internal class SpawnCommand : Command
{
public SpawnCommand() : base("spawn", 3) { }
protected override bool Process(Player player, RealmTime time, string args)
{
{
public SpawnCommand() : base("spawn", 3) { }
protected override bool Process(Player player, RealmTime time, string args)
{
and heres the code you add
Code
if (!(player.Owner.Name == "duelarena"))
{
player.SendError("Not Here!");
return false;
}
{
player.SendError("Not Here!");
return false;
}
Hope this helps

