Go Back   RunUO - Ultima Online Emulation > RunUO > Custom Script Release Archive

Custom Script Release Archive This is a pre-script database archive of what our users had released.

 
 
Thread Tools Display Modes
Old 02-05-2006, 04:15 PM   #1 (permalink)
 
Join Date: Aug 2003
Age: 27
Posts: 134
Default Combining FSAnimalTaming with Daat99's OWLTR

I made this file for everyone who, like me, was having major issues with making this work.
Now all this information is available on here, but you have to search through pages of stuff. I figure I would help make this more efficient.
Let me point out I did hardly anything but follow the directions of the creators, and other fellow members. So here is for those of you having problems like me!

*edit Feb 13 2006*

Fixed BaseCreature.cs
Attached Files
File Type: zip Combination Taming and OWLTR.zip (43.1 KB, 140 views)

Last edited by Celestria; 02-13-2006 at 10:56 AM.
Celestria is offline  
Old 02-05-2006, 10:13 PM   #2 (permalink)
 
Join Date: Jul 2004
Location: Halifax, NS
Age: 33
Posts: 3
Default

Yeah thats not a fun task, took me a few hours to get everything to work right with each other.

Good Job man.
d53642 is offline  
Old 02-12-2006, 02:42 AM   #3 (permalink)
 
Join Date: May 2003
Posts: 303
Default

Curious,

In your basecreature.cs file you removed to instances of the following code:

Code:
			PackItem( reg );
			if ( Daat99OWLTR.Ops[5].Setting )
			{
				if (Utility.Random(100) == 50)
					PackItem( new CraftingRecipe( 0 ) );
				amount = Utility.RandomMinMax( 1, amount );
				if (amount > 4)
					amount = 4;
				switch ( amount )
				{
					case 1: default: amount = Utility.RandomMinMax(1, 3); break;
					case 2: amount = Utility.RandomMinMax(2, 4); break;
					case 3: amount = Utility.RandomMinMax(3, 5); break;
					case 4: amount = Utility.RandomMinMax(4, 6); break;
				}
				int check = 3, level = amount;
				if (level < check)
					check = level;
				while (check != 0)
				{
					if (check > 2)
						PackItem( new CraftingRecipe( level ) );
					else
						PackItem( new CraftingRecipe( Utility.RandomMinMax( 1, amount ) ) );
					level--;
					check--;
				}
Any particular reason why?

Thanks

Anvil
Anvil is offline  
Old 02-12-2006, 07:14 AM   #4 (permalink)
RunUO Forum Moderator
 
daat99's Avatar
 
Join Date: Dec 2004
Location: Israel
Age: 27
Posts: 8,163
Send a message via ICQ to daat99 Send a message via AIM to daat99
Default

Quote:
Originally Posted by Anvil
Curious,

In your basecreature.cs file you removed to instances of the following code:

Code:
			PackItem( reg );
			if ( Daat99OWLTR.Ops[5].Setting )
			{
				if (Utility.Random(100) == 50)
					PackItem( new CraftingRecipe( 0 ) );
				amount = Utility.RandomMinMax( 1, amount );
				if (amount > 4)
					amount = 4;
				switch ( amount )
				{
					case 1: default: amount = Utility.RandomMinMax(1, 3); break;
					case 2: amount = Utility.RandomMinMax(2, 4); break;
					case 3: amount = Utility.RandomMinMax(3, 5); break;
					case 4: amount = Utility.RandomMinMax(4, 6); break;
				}
				int check = 3, level = amount;
				if (level < check)
					check = level;
				while (check != 0)
				{
					if (check > 2)
						PackItem( new CraftingRecipe( level ) );
					else
						PackItem( new CraftingRecipe( Utility.RandomMinMax( 1, amount ) ) );
					level--;
					check--;
				}
Any particular reason why?

Thanks

Anvil
I bet that he just missed it since he most likely have the recipes off.
__________________
I always try to help
Sometimes, I don't know how....

My Web Page
Forum Rules
-------------------------------------------------------------
Extensive OWLTR System | Token System | World Teleporters
-------------------------------------------------------------
daat99 is offline  
Old 02-13-2006, 10:47 AM   #5 (permalink)
 
Join Date: Aug 2003
Age: 27
Posts: 134
Default

Yeah I did miss it. I'll go back and make sure I have everything this time. Thanks for pointing that out!
And btw... I am a girl. If a guy was named Celestria that would just be wierd.
Celestria is offline  
Old 02-13-2006, 10:57 AM   #6 (permalink)
RunUO Forum Moderator
 
daat99's Avatar
 
Join Date: Dec 2004
Location: Israel
Age: 27
Posts: 8,163
Send a message via ICQ to daat99 Send a message via AIM to daat99
Default

Quote:
Originally Posted by Celestria
Yeah I did miss it. I'll go back and make sure I have everything this time. Thanks for pointing that out!
And btw... I am a girl. If a guy was named Celestria that would just be wierd.
A girl? what's that?
__________________
I always try to help
Sometimes, I don't know how....

My Web Page
Forum Rules
-------------------------------------------------------------
Extensive OWLTR System | Token System | World Teleporters
-------------------------------------------------------------
daat99 is offline  
Old 02-13-2006, 11:04 AM   #7 (permalink)
 
Join Date: Aug 2003
Age: 27
Posts: 134
Default

Quote:
Originally Posted by daat99
A girl? what's that?
* LMAO!*
Ask your mother, she might have to explain the birds and the bees while she is at it.
Celestria is offline  
Old 02-13-2006, 11:08 AM   #8 (permalink)
RunUO Forum Moderator
 
daat99's Avatar
 
Join Date: Dec 2004
Location: Israel
Age: 27
Posts: 8,163
Send a message via ICQ to daat99 Send a message via AIM to daat99
Default

Quote:
Originally Posted by Celestria
* LMAO!*
Ask your mother, she might have to explain the birds and the bees while she is at it.
Hmm, mother... another word that isn't related to computers, where you get those words from?
__________________
I always try to help
Sometimes, I don't know how....

My Web Page
Forum Rules
-------------------------------------------------------------
Extensive OWLTR System | Token System | World Teleporters
-------------------------------------------------------------
daat99 is offline  
Old 02-13-2006, 11:58 AM   #9 (permalink)
 
Join Date: May 2003
Posts: 303
Default

Quote:
Originally Posted by Celestria
Yeah I did miss it. I'll go back and make sure I have everything this time. Thanks for pointing that out!
And btw... I am a girl. If a guy was named Celestria that would just be wierd.
OK, just wanted to make sure. I left them in mine, so no harm no foul. Thanks.

Anvil
Anvil is offline  
Old 02-13-2006, 12:51 PM   #10 (permalink)
 
Join Date: Aug 2003
Age: 27
Posts: 134
Talking

Quote:
Originally Posted by daat99
Hmm, mother... another word that isn't related to computers, where you get those words from?
So wait, you are saying girl, she, her are not words related to computers, but he and him are?
I just heard feminists roll over in their graves! lol
Celestria is offline  
Old 02-13-2006, 01:28 PM   #11 (permalink)
 
Join Date: Oct 2002
Age: 23
Posts: 4,689
Default

This is in the wrong forum. This should be moved to the script release forum.
XxSP1DERxX is offline  
Old 02-13-2006, 03:08 PM   #12 (permalink)
RunUO Forum Moderator
 
daat99's Avatar
 
Join Date: Dec 2004
Location: Israel
Age: 27
Posts: 8,163
Send a message via ICQ to daat99 Send a message via AIM to daat99
Default

Quote:
Originally Posted by Celestria
So wait, you are saying girl, she, her are not words related to computers, but he and him are?
I just heard feminists roll over in their graves! lol
That isn't what I ment.
Let me explain this to you, even tho now I'll sound stupid because it got out of the jokes category (not that I sound smart otherwise).

You have a "guy", a "guy" that spend 24/7 around a computer.
Since he's a "guy" and he's 24/7 around the computer he doesn't know anything that isn't related to that.
So basically he know 2 things:
1. "Guy".
2. "Computer".
__________________
I always try to help
Sometimes, I don't know how....

My Web Page
Forum Rules
-------------------------------------------------------------
Extensive OWLTR System | Token System | World Teleporters
-------------------------------------------------------------
daat99 is offline  
Old 02-13-2006, 11:07 PM   #13 (permalink)
 
Join Date: Aug 2003
Age: 27
Posts: 134
Default

Oh Daat hun I still was joking, I am anti-feminist.
You and I were just going two different directions with the Joke.
Celestria is offline  
 

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