|
||
|
|||||||
| New Join Forum So your new to RunUO and looking to work with people that are new, this is the place. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 (permalink) |
|
Join Date: Jun 2004
Age: 22
Posts: 11
|
I did a search through forums about removing AoS from a server, and i didn't really get any answers, i know someone told me u can disable thru AoS.cs but i tried and it just gives me errors when i change something, can anyone help me out a bit more?
|
|
|
|
|
|
#2 (permalink) | |
|
RunUO Forum Moderator
|
Quote:
__________________
I always try to help
![]() Sometimes, I don't know how.... ![]() My Web Page Forum Rules ------------------------------------------------------------- Extensive OWLTR System | Token System | World Teleporters ------------------------------------------------------------- |
|
|
|
|
|
|
#3 (permalink) |
|
GM Hider
Join Date: Oct 2003
Age: 29
Posts: 187
|
It shouldn't really be any harder than changing this part in AOS.cs
Code:
using System;
using System.Collections;
using Server;
using Server.Items;
using Server.Mobiles;
using Server.Network;
namespace Server
{
public class AOS
{
private const bool Enabled = true; <- Change this to false
<snip>
|
|
|
|
|
|
#4 (permalink) |
|
Join Date: Jun 2004
Age: 22
Posts: 11
|
Here Is The Full Report.
RunUO - [www.runuo.com] Version 1.0.0, Build 36918 Scripts: Compiling C# scripts...failed (7 errors, 0 warnings) - Error: Scripts\Misc\AOS.cs: CS0103: (line 16, column 15) The name 'disabled' does not exist in the class or namespace 'Server.AOS' - Error: Scripts\Misc\AOS.cs: CS0103: (line 17, column 30) The name 'disabled' does not exist in the class or namespace 'Server.AOS' - Error: Scripts\Misc\AOS.cs: CS0103: (line 18, column 33) The name 'disabled' does not exist in the class or namespace 'Server.AOS' - Error: Scripts\Misc\AOS.cs: CS0103: (line 19, column 31) The name 'disabled' does not exist in the class or namespace 'Server.AOS' - Error: Scripts\Misc\AOS.cs: CS0103: (line 20, column 32) The name 'disabled' does not exist in the class or namespace 'Server.AOS' - Error: Scripts\Misc\AOS.cs: CS0103: (line 21, column 32) The name 'disabled' does not exist in the class or namespace 'Server.AOS' - Error: Scripts\Misc\AOS.cs: CS0103: (line 22, column 31) The name 'disabled' does not exist in the class or namespace 'Server.AOS' Scripts: One or more scripts failed to compile or no script files were found. - Press return to exit, or R to try again. |
|
|
|
|
|
#6 (permalink) |
|
Forum Novice
Join Date: Apr 2005
Age: 49
Posts: 174
|
in your AOS.cs you will see this at the very top
using System; using System.Collections; using Server; using Server.Items; using Server.Mobiles; using Server.Network; namespace Server { public class AOS { private const bool Enabled = false; public static void Configure() { Just copy and paste every thing here that is black to the same lines in your AOS.cs file. I am assuming you must also disable SE.cs. Just copy and past the entire script below to your SE.cs. Its also in your Runuo/scripts/misc. folder using System; using Server.Network; namespace Server { public class SE { public const bool Enabled = false; public static void Configure() { Core.SE = Enabled; } } } Last edited by Almrac Avanti; 02-08-2006 at 08:45 PM. |
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|