Go Back   RunUO - Ultima Online Emulation > RunUO > Custom Script Releases

Custom Script Releases This forum is where you can release your custom scripts for other users to use.

Please note: By releasing your scripts here you are submitting them to the public and as such agree to publish them under the GPL licensing terms. The RunUO Team has made its software GPL for you to use and enjoy you should do the same for anything based off of RunUO.

Reply
 
Thread Tools Display Modes
Old 03-28-2007, 06:07 PM   #26 (permalink)
Forum Novice
 
pepolshet's Avatar
 
Join Date: Mar 2007
Posts: 170
Default

it don't help thanks for trying
pepolshet is offline   Reply With Quote
Old 04-02-2007, 09:27 AM   #27 (permalink)
Forum Novice
 
pepolshet's Avatar
 
Join Date: Mar 2007
Posts: 170
Default

ok got it now i got another question how come the daemon doesn't go to the next stage?
pepolshet is offline   Reply With Quote
Old 04-02-2007, 12:42 PM   #28 (permalink)
Forum Novice
 
Hotshot's Avatar
 
Join Date: Jan 2006
Posts: 213
Default

It does... I have no problems, I don't know what you did to get it to work, but you changed something
__________________
You Can Make a Good Living working for someone else, you can make a fortune working for yourself.
Hotshot is offline   Reply With Quote
Old 04-02-2007, 01:06 PM   #29 (permalink)
Forum Novice
 
Hotshot's Avatar
 
Join Date: Jan 2006
Posts: 213
Default

Its possible you see it as going from a Mongbat to an Imp... just slight difference there.
__________________
You Can Make a Good Living working for someone else, you can make a fortune working for yourself.
Hotshot is offline   Reply With Quote
Old 04-04-2007, 12:12 PM   #30 (permalink)
Forum Novice
 
pepolshet's Avatar
 
Join Date: Mar 2007
Posts: 170
Default

I got it thanks
pepolshet is offline   Reply With Quote
Old 08-14-2007, 09:21 AM   #31 (permalink)
Newbie
 
Join Date: Sep 2005
Age: 25
Posts: 24
Default

hehe great i last time use daemon dragon in me server runuo 1.0 thx for you modific 2.0, my new script 16 new fish and can fishing in play
Manuelb is offline   Reply With Quote
Old 08-16-2007, 12:35 PM   #32 (permalink)
Lurker
 
Join Date: Aug 2007
Age: 21
Posts: 8
Default

great...man...
__________________
Life is full of ups and downs.
ipod movies
ipod video converter
moonmoon is offline   Reply With Quote
Old 08-16-2007, 04:35 PM   #33 (permalink)
Forum Novice
 
Hotshot's Avatar
 
Join Date: Jan 2006
Posts: 213
Default

Thanks, No big thing. Just a little conversion of The Evo Dragon which I have no credit for, I just wanted to see something other than dragons all the time. :-)
Anyone looking for Admin on their shard, I can donate as much time as the Electric allows me, their redoing Lines everywhere from Huricane Katrina. I will be able to get on when they are not working on them.
__________________
You Can Make a Good Living working for someone else, you can make a fortune working for yourself.
Hotshot is offline   Reply With Quote
Old 08-17-2007, 11:35 PM   #34 (permalink)
Newbie
 
Join Date: Feb 2007
Age: 30
Posts: 20
Default

great script agin bro good job keep em coming my people like them on my private shard
kksdad is offline   Reply With Quote
Old 12-08-2007, 08:18 PM   #35 (permalink)
Newbie
 
Join Date: Oct 2007
Posts: 48
Send a message via AIM to Lord DJ_Shadow
Question evo drags

Do we need to make a custom script folder for this?
or can i just put it in a regular folder?
pm me plz
__________________
Aim-trillwhitedude01
Lord DJ_Shadow is offline   Reply With Quote
Old 12-19-2007, 07:01 PM   #36 (permalink)
Forum Novice
 
Hotshot's Avatar
 
Join Date: Jan 2006
Posts: 213
Default

just put in your custom scripts and away ya go, sorry for the late reply. Been busy with real life
__________________
You Can Make a Good Living working for someone else, you can make a fortune working for yourself.
Hotshot is offline   Reply With Quote
Old 02-16-2008, 12:04 PM   #37 (permalink)
Lurker
 
Join Date: Feb 2008
Posts: 4
Default

here is the script for "KPcommand" only for daemons...
Quote:
//Script Transformed By: Cherokee/Mule II aka. HotShot

using System;
using System.Collections;
using Server;
using Server.Items;
using Server.Mobiles;
using Server.Gumps;
using Server.Network;
using Server.Targeting;


namespace Server.Commands
{
public class KPSystem
{

public static void Initialize()
{
CommandSystem.Register( "KP", AccessLevel.Player, new CommandEventHandler( KP_OnCommand ) );
}

public static void KP_OnCommand( CommandEventArgs e )
{
PlayerMobile from = e.Mobile as PlayerMobile;

if( from != null )
{
from.Target = new InternalTarget( from );
}
}

private class InternalTarget : Target
{
public InternalTarget( Mobile from ) : base( 8, false, TargetFlags.None )
{
from.SendMessage ( "Target an animal that you own to get their kill point amount." );
}

protected override void OnTarget( Mobile from, object obj )
{
if ( !from.Alive )
{
from.SendMessage( "You may not do that while dead." );

}
else if ( obj is EvolutionDaemon && obj is BaseCreature )
{
BaseCreature bc = (BaseCreature)obj;
EvolutionDaemon eh = (EvolutionDaemon)obj;

if ( eh.Controlled == true && eh.ControlMaster == from )
{
eh.PublicOverheadMessage( MessageType.Regular, eh.SpeechHue, true, eh.Name +" has "+ eh.KP +" kill points.", false );
}
else
{
from.SendMessage( "You do not control this Daemon!" );
}
}
}
}
}
}
jayjay100 is offline   Reply With Quote
Old 12-19-2008, 05:24 PM   #38 (permalink)
Newbie
 
Join Date: May 2008
Age: 28
Posts: 45
Default

i had the same error that pelepoth had and did what was said adding in those two lines to the script and the kpcommand still doesnt work any help would be awesome
jklamm1980 is offline   Reply With Quote
Old 12-19-2008, 05:25 PM   #39 (permalink)
Newbie
 
Join Date: May 2008
Age: 28
Posts: 45
Default

and does anyone have a KP command that works with the xanthos evo system???
jklamm1980 is offline   Reply With Quote
Old 12-19-2008, 06:38 PM   #40 (permalink)
Forum Novice
 
Join Date: Jul 2006
Location: Oklahoma
Age: 30
Posts: 611
Default

Havent used the system in sometime but should be [kp worked on my server and works on the server I staff on now.
__________________
Friends Come and go but Enemies accumulate
oiii88 is offline   Reply With Quote
Old 12-20-2008, 02:33 PM   #41 (permalink)
Newbie
 
Join Date: May 2008
Age: 28
Posts: 45
Default

no lol the KP command doesnt work at all it causes an error so i took it out but now my players cant check their daemons kp
jklamm1980 is offline   Reply With Quote
Old 01-09-2009, 08:53 PM   #42 (permalink)
Lurker
 
Speye's Avatar
 
Join Date: Oct 2006
Age: 17
Posts: 1
Default

Quote:
Originally Posted by E c k a r t h View Post
Mhmm... Evolution Steed?
Maybe Evo Sheep lol jk nice work though
Speye is offline   Reply With Quote
Old 01-09-2009, 09:15 PM   #43 (permalink)
Newbie
 
Join Date: Aug 2006
Posts: 94
Post

here is the command file that works on my server with xanthos evo's. maybe this will work for you.

use [ep

place this in the evo directory.
Attached Files
File Type: cs Commands.cs (1.5 KB, 7 views)
nevar2006 is offline   Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0 RC5