|
||
|
|||||||
| Custom Script Release Archive This is a pre-script database archive of what our users had released. |
|
|
Thread Tools | Display Modes |
|
|
#1 (permalink) |
|
Forum Expert
Join Date: Oct 2002
Posts: 1,127
|
The default world save that comes with RunUO 1.0 includes all the decorations etc. that Krrios was able to scrape from OSI. It actually also has an orphaned PlayerMobile (ie. one with no account) that Krrios was using to decorate/save the world before its release.
I was bored and decided that if you want to save yourself a negligible amount of memory/diskspace you can run this command ([KillKrrios) to find and delete Krrios. (Much love, Krrios! :>) Code:
using System;
using Server;
using Server.Mobiles;
namespace Server.Custom.Misc
{
public class DeleteKrrios
{
public static void Initialize()
{
Server.Commands.Register( "KillKrrios", AccessLevel.Administrator, new CommandEventHandler( KillKrrios_OnCommand ) );
}
[Usage( "KillKrrios" )]
[Description( "Finds and deletes Krrios' orphaned character from the default world." )]
private static void KillKrrios_OnCommand( CommandEventArgs e )
{
Mobile m = World.FindMobile( 1 );
if ( m != null && m.Name == "Krrios" ) // Yeah, could go further, but if any admin decides to name themselves Krrios they deserve to be deleted :P
{
m.Delete();
e.Mobile.SendMessage( "Krrios was found and destroyed." );
e.Mobile.SendMessage( "Remember to perform a world save to make this permanent." );
}
else
e.Mobile.SendMessage( "The default Krrios does not exist or was otherwise not found." );
}
}
}
|
|
|
|
|
#7 (permalink) |
|
Forum Expert
Join Date: Nov 2004
Location: Beyond the Gates of Hell
Age: 37
Posts: 3,509
|
There is only one way this script could be even better.....combine this script with the Ultimate Kill Command.
![]()
__________________
Leader of the Anti-OSI Movement. Inventing a new game experience in an EA Games-free environment. Don Juan Matus "The basic difference between an ordinary man and a warrior is that a warrior takes everything as a challenge, while an ordinary man takes everything as a blessing or as a curse." My Customs:
|
|
|
|
|
#10 (permalink) |
|
Now I have a question Im somewhat new to this and dont know every aspect about it But ill forge ahead with an Asinine question all hale the comming flame comments about a noob not knowing nuttin!
It would seem to me that if someone (Pissed off Shard GM, Player) new that there was a character on a shard that did not have a account and said person decided to use that clients AccessLevel Priviledge and could force acceptance of an account to that character in some fashion ( IP attack Packet Hack just guessing here) would that character not be granted Admin Priviledges to the shard? If this were to happen would that not be a security hole in the code. They damn for sure delete accounts of Developers at The company I work for as soon as they know the Developer is leaving the premises and any access rights or priviledges left behind are removed then without waiting. Im Not sure that you could force an attachment to what essentially is the authentication token for a user But with the account property set to null it invites someone to try. Better would have been to leave Krrios as a player level access or to remove him entirely But Again this could be all my fertile immagination as well ![]() |
|
|
|
|
|
#11 (permalink) | |
|
Forum Expert
|
Quote:
if anything, it was prolly just an orphan mobile left over like stated, or something similar like i mentioned with a Ryan circulating. not too much harm i would imagin. |
|
|
|
|
|
#12 (permalink) | |
|
Forum Expert
Join Date: Jan 2004
Location: England
Age: 20
Posts: 442
|
Quote:
|
|
|
|
|
|
#13 (permalink) | |
|
Forum Expert
|
Quote:
but as i originally stated.....sure it is possible, and i haven't looked into it. I just don't see Ryan or Krrios letting something like that happen when alot could be at stake for their emulator like that |
|
|
|
|
|
#15 (permalink) | |
|
Quote:
Yes it has Adminstrator as its privileges I just used [xmlfind to bring Him to me (Wonderful tool by the way) His [Props shows him as Admin although his gump just says Krrios |
||
|
|
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|