|
||
|
|||||||
| RunUO Post Archive The Archvie |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 (permalink) |
|
RunUO Developer/Demise Person
Join Date: Mar 2003
Location: California
Age: 20
Posts: 1,700
|
Allows you to Delete/Move/Swap characters between accounts! Type [charControl then enter the account names in the gump!
![]() Just plop into scripts folder and type [charControl ! Report any bugs & feel free to suggest stuffs! Thank Ryan for the idea for htis and asking me to do it!
__________________
Andre Sayre, Core Developer The RunUO Software Team The day we are born is the day Death inches ever closer... E-mail: ASayre ( AT ) RunUO ( Dot ) c o m I'm as graceful as a gazelle galloping over glistening green grass with it's head on fire. |
|
|
|
|
|
#2 (permalink) |
|
Account Terminated
Join Date: Apr 2004
Location: Titusville PA
Age: 26
Posts: 975
|
Now that completely redifines the definition of a good script. I was just thinking about this the other day only i thought about shard transfers but then i remembered i only have one shard hahaha.
|
|
|
|
|
|
#5 (permalink) |
|
Forum Expert
Join Date: Mar 2004
Location: AR
Age: 19
Posts: 272
|
Just a suggestion, I'm not sure if your system contains this or not, but woudn't a copy mobile option be a nice addon?? It seems this is the only thing missing.. theres swap, delete, and move, shoudn't copy be a nice addition??
I'm not sure if this is already possible in this system, but just a suggestion. It may not be an option used too much, but of course it will add more versatility to your script. By the way, I havn't tested this yet but it looks great! Keep up the awesome scripts. |
|
|
|
|
|
#6 (permalink) |
|
Join Date: Oct 2002
Age: 23
Posts: 4,689
|
That would be possible.. although you get into the same thing that happened when poeple asked for an exact [dupe command. And that is that there are many properties, including ones that are readonly (and set internally when the mobile is created), which will defeat the idea that its an exact clone (if thats what you are getting at). I wonder how far you can go with that idea Asayre.
|
|
|
|
|
|
#7 (permalink) |
|
Moderate
Join Date: Nov 2002
Location: USA
Posts: 6,598
|
This rocks! And believe me, I am very picky about the scripts I download and use. Definatly this is on the must have list!
__________________
David Forum Moderator The RunUO.com Forum Moderator Team Forum Rules and Guidelines RunUO Forum Search Engine Download RunUO 2.0 RC2 |
|
|
|
|
|
#10 (permalink) |
|
Moderate
Join Date: Nov 2002
Location: USA
Posts: 6,598
|
Did you enter an account name in the box at the top? When you do it should show all the characters on that account with the gems.
__________________
David Forum Moderator The RunUO.com Forum Moderator Team Forum Rules and Guidelines RunUO Forum Search Engine Download RunUO 2.0 RC2 |
|
|
|
|
|
#12 (permalink) |
|
Forum Expert
Join Date: Mar 2004
Location: AR
Age: 19
Posts: 272
|
My guess... it could be a gump ID problem with the button... if the ID of the button is invalid to your client it woudn't show up... just a guess.
-Did you try just clicking in the empty space to which the button would usually be? |
|
|
|
|
|
#13 (permalink) |
|
RunUO Developer/Demise Person
Join Date: Mar 2003
Location: California
Age: 20
Posts: 1,700
|
I won't be including a copy, just cause of the potential problems. Anyways, Pyro, are you able to reproduce it on a fresh server? from step 1?
__________________
Andre Sayre, Core Developer The RunUO Software Team The day we are born is the day Death inches ever closer... E-mail: ASayre ( AT ) RunUO ( Dot ) c o m I'm as graceful as a gazelle galloping over glistening green grass with it's head on fire. |
|
|
|
|
|
#15 (permalink) | |
|
Forum Expert
|
Quote:
and when i click where the button is supposed to be, it doesn't do anything |
|
|
|
|
|
|
#18 (permalink) | |
|
Not a Lurker
Join Date: Jun 2004
Location: USA
Age: 34
Posts: 63
|
Cool indeed...a script to be proud of. Seems to be working fine.
__________________
Quote:
|
|
|
|
|
|
|
#19 (permalink) | |
|
Not a Lurker
Join Date: Jun 2004
Location: USA
Age: 34
Posts: 63
|
Sweet ass sweet!!! This a cool script...one to be proud of.
![]()
__________________
Quote:
|
|
|
|
|
|
|
#20 (permalink) | |
|
Not a Lurker
Join Date: Jun 2004
Location: USA
Age: 34
Posts: 63
|
Sweet ass sweet!!! Great script... one to be proud of.
__________________
Quote:
|
|
|
|
|
|
|
#22 (permalink) |
|
Join Date: Apr 2004
Location: Brasil
Age: 42
Posts: 28
|
This is wrong, isnīt it?
Code:
public bool SwapEm()
{
if( a1 == null || a2 == null )
return false;
Mobile mob = (Mobile)a1[a1CharIndex];
Mobile mob2 = (Mobile)a2[a2CharIndex];
-----------> a1[a1CharIndex] = mob2;
-----------> a2[a2CharIndex] = mob;
if( mob == null || mob2 == null )
return false;
mob.Say( "I've been Swapped to another Account!" );
----> mob.Say( "I've been Swapped to another Account!" );
if( mob.NetState != null )
mob.NetState.Dispose();
if( mob2.NetState != null )
mob2.NetState.Dispose();
return true;
|
|
|
|
|
|
#23 (permalink) | |
|
RunUO Developer/Demise Person
Join Date: Mar 2003
Location: California
Age: 20
Posts: 1,700
|
Quote:
__________________
Andre Sayre, Core Developer The RunUO Software Team The day we are born is the day Death inches ever closer... E-mail: ASayre ( AT ) RunUO ( Dot ) c o m I'm as graceful as a gazelle galloping over glistening green grass with it's head on fire. |
|
|
|
|
|
|
#24 (permalink) |
|
Forum Expert
Join Date: Mar 2003
Location: England
Age: 35
Posts: 986
|
Cool idea!
A question though please if i may.. I notice on the script is the standard warning for deleting characters regarding housing but what happens when the character you transfer is the character the house belongs to? does the house become condemned? |
|
|
|
|
|
#25 (permalink) | |
|
RunUO Developer/Demise Person
Join Date: Mar 2003
Location: California
Age: 20
Posts: 1,700
|
Quote:
__________________
Andre Sayre, Core Developer The RunUO Software Team The day we are born is the day Death inches ever closer... E-mail: ASayre ( AT ) RunUO ( Dot ) c o m I'm as graceful as a gazelle galloping over glistening green grass with it's head on fire. |
|
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|