RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Lucid Nagual's << OWLTR & FS Taming Plugin | Carpenter & Fletcher BODs >>

Papler

Sorceror
Hello, id like to ask for a little help with this...

sounds strange, but after i installed this script (with a file line-by-line compare program), nobles stopped working.
they dont have the context menus, and dont react to "destination" or "i will take thee". all they can do is train skills.

i know this script isnt involved with baseEscortable, because a Basevendor and baseEscortable are totally separated.

i made no changes to Noble.cs or BaseEscortable.cs along with this install.

anyone had the same problem or knows how to solve it? thank you.
 
Papler

Hello, id like to ask for a little help with this...

sounds strange, but after i installed this script (with a file line-by-line compare program), nobles stopped working.
they dont have the context menus, and dont react to "destination" or "i will take thee". all they can do is train skills.

i know this script isnt involved with baseEscortable, because a Basevendor and baseEscortable are totally separated.

i made no changes to Noble.cs or BaseEscortable.cs along with this install.

anyone had the same problem or knows how to solve it? thank you.
There is no way this script can cause those problems.
 
Lucid,

I have a request of your system when you next work on it for a major revision

if you could have a "gump" or a xml file to list the names of the all the resources, and a way for us to set our own name for them then

i.e. Blaze would be the default name, but we can call it Magma if we want, etc

would realy be a big boost to this all ready great system
 
Lord_Greywolf

Lucid,

I have a request of your system when you next work on it for a major revision

if you could have a "gump" or a xml file to list the names of the all the resources, and a way for us to set our own name for them then

i.e. Blaze would be the default name, but we can call it Magma if we want, etc

would realy be a big boost to this all ready great system
I have a way of doing that, but it would mean rewriting Daat99's system and I didn't want to do that out of respect to him.
 

Papler

Sorceror
found my bug with nobles not working... it is not these bods, it is apiculture, something that went in before and i didnt notice it.

*happy dance*
 
Papler

found my bug with nobles not working... it is not these bods, it is apiculture, something that went in before and i didnt notice it.

*happy dance*
Glade you figured it out :) Make sure you keep checking back for new updates.
 

dracana

Sorceror
small bug in basevendor.cs

Found a small bug in the new tinker section of BaseVendor.cs....

Basically, you just need to enclose the following code in {}...

Code:
				if ( (dropped is SmallTinkBOD && !((SmallTinkBOD)dropped).Complete) || (dropped is LargeTinkBOD && !((LargeTinkBOD)dropped).Complete) )
				{
					from.SendMessage(32, "You have not completed the order yet.");
					return false;
				}
				Item reward;
				int gold, fame;
				if ( dropped is SmallTinkBOD )
				((SmallTinkBOD)dropped).GetRewards( out reward, out gold, out fame );
				else if ( dropped is LargeTinkBOD )
				((LargeTinkBOD)dropped).GetRewards( out reward, out gold, out fame );
				else
				{
					from.SendMessage(32, "This isn't an acceptable bod");
					return false;
				}
			
			from.SendSound( 0x3D );

			from.SendLocalizedMessage( 1045132 ); // Thank you so much!  Here is a reward for your effort.

			if ( reward != null )
				from.AddToBackpack( reward );

			if ( gold > 1000 )
					from.AddToBackpack( new BankCheck( gold ) );
			else if ( gold > 0 )
					from.AddToBackpack( new Gold( gold ) );
				
			Titles.AwardFame( from, fame, true );

			dropped.Delete();
			return true;


Without the {} it will never process the base.OnDragDrop and when gold is dropped on the vendor they just always tell you it is an unacceptable bod :)
 
dracana

small bug in basevendor.cs
Found a small bug in the new tinker section of BaseVendor.cs....

Basically, you just need to enclose the following code in {}...

Code:
if ( (dropped is SmallTinkBOD && !((SmallTinkBOD)dropped).Complete) || (dropped is LargeTinkBOD && !((LargeTinkBOD)dropped).Complete) ) { from.SendMessage(32, "You have not completed the order yet."); return false; } Item reward; int gold, fame; if ( dropped is SmallTinkBOD ) ((SmallTinkBOD)dropped).GetRewards( out reward, out gold, out fame ); else if ( dropped is LargeTinkBOD ) ((LargeTinkBOD)dropped).GetRewards( out reward, out gold, out fame ); else { from.SendMessage(32, "This isn't an acceptable bod"); return false; } from.SendSound( 0x3D ); from.SendLocalizedMessage( 1045132 ); // Thank you so much! Here is a reward for your effort. if ( reward != null ) from.AddToBackpack( reward ); if ( gold > 1000 ) from.AddToBackpack( new BankCheck( gold ) ); else if ( gold > 0 ) from.AddToBackpack( new Gold( gold ) ); Titles.AwardFame( from, fame, true ); dropped.Delete(); return true;​



Without the {} it will never process the base.OnDragDrop and when gold is dropped on the vendor they just always tell you it is an unacceptable bod :)
OK thx Dracana. I will make the adjustments when I get a chance and update the system again.
 

frank

Wanderer
errors

im getting theses errors and just cant seem to locate what i did wrong

Code:
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 17
3, column 8) The name 'OwltrOps' does not exist in the class or namespace 'Serve
r.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 17
7, column 86) The name 'OwltrOps' does not exist in the class or namespace 'Serv
er.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 17
9, column 86) The name 'OwltrOps' does not exist in the class or namespace 'Serv
er.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 18
1, column 8) The name 'OwltrOps' does not exist in the class or namespace 'Serve
r.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 18
5, column 86) The name 'OwltrOps' does not exist in the class or namespace 'Serv
er.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 18
9, column 85) The name 'OwltrOps' does not exist in the class or namespace 'Serv
er.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 19
1, column 8) The name 'OwltrOps' does not exist in the class or namespace 'Serve
r.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 19
5, column 85) The name 'OwltrOps' does not exist in the class or namespace 'Serv
er.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 19
7, column 86) The name 'OwltrOps' does not exist in the class or namespace 'Serv
er.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 19
9, column 8) The name 'OwltrOps' does not exist in the class or namespace 'Serve
r.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 20
3, column 86) The name 'OwltrOps' does not exist in the class or namespace 'Serv
er.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 20
5, column 86) The name 'OwltrOps' does not exist in the class or namespace 'Serv
er.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 20
7, column 8) The name 'OwltrOps' does not exist in the class or namespace 'Serve
r.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 21
1, column 86) The name 'OwltrOps' does not exist in the class or namespace 'Serv
er.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 21
5, column 85) The name 'OwltrOps' does not exist in the class or namespace 'Serv
er.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 21
7, column 8) The name 'OwltrOps' does not exist in the class or namespace 'Serve
r.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 22
1, column 85) The name 'OwltrOps' does not exist in the class or namespace 'Serv
er.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 22
3, column 86) The name 'OwltrOps' does not exist in the class or namespace 'Serv
er.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 22
5, column 8) The name 'OwltrOps' does not exist in the class or namespace 'Serve
r.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 22
9, column 86) The name 'OwltrOps' does not exist in the class or namespace 'Serv
er.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 23
3, column 85) The name 'OwltrOps' does not exist in the class or namespace 'Serv
er.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 23
5, column 8) The name 'OwltrOps' does not exist in the class or namespace 'Serve
r.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 23
9, column 85) The name 'OwltrOps' does not exist in the class or namespace 'Serv
er.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 24
1, column 86) The name 'OwltrOps' does not exist in the class or namespace 'Serv
er.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 24
3, column 8) The name 'OwltrOps' does not exist in the class or namespace 'Serve
r.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 24
7, column 86) The name 'OwltrOps' does not exist in the class or namespace 'Serv
er.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 25
1, column 85) The name 'OwltrOps' does not exist in the class or namespace 'Serv
er.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 25
3, column 8) The name 'OwltrOps' does not exist in the class or namespace 'Serve
r.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 25
7, column 84) The name 'OwltrOps' does not exist in the class or namespace 'Serv
er.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 25
9, column 86) The name 'OwltrOps' does not exist in the class or namespace 'Serv
er.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 26
1, column 8) The name 'OwltrOps' does not exist in the class or namespace 'Serve
r.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 26
5, column 85) The name 'OwltrOps' does not exist in the class or namespace 'Serv
er.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 27
0, column 86) The name 'OwltrOps' does not exist in the class or namespace 'Serv
er.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 27
2, column 8) The name 'OwltrOps' does not exist in the class or namespace 'Serve
r.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 27
7, column 86) The name 'OwltrOps' does not exist in the class or namespace 'Serv
er.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 27
9, column 8) The name 'OwltrOps' does not exist in the class or namespace 'Serve
r.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 28
4, column 86) The name 'OwltrOps' does not exist in the class or namespace 'Serv
er.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 28
6, column 8) The name 'OwltrOps' does not exist in the class or namespace 'Serve
r.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 29
1, column 86) The name 'OwltrOps' does not exist in the class or namespace 'Serv
er.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 29
3, column 8) The name 'OwltrOps' does not exist in the class or namespace 'Serve
r.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 29
8, column 86) The name 'OwltrOps' does not exist in the class or namespace 'Serv
er.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 30
0, column 8) The name 'OwltrOps' does not exist in the class or namespace 'Serve
r.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 30
5, column 86) The name 'OwltrOps' does not exist in the class or namespace 'Serv
er.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 30
7, column 8) The name 'OwltrOps' does not exist in the class or namespace 'Serve
r.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 31
2, column 86) The name 'OwltrOps' does not exist in the class or namespace 'Serv
er.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 31
4, column 8) The name 'OwltrOps' does not exist in the class or namespace 'Serve
r.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 31
9, column 86) The name 'OwltrOps' does not exist in the class or namespace 'Serv
er.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 32
1, column 8) The name 'OwltrOps' does not exist in the class or namespace 'Serve
r.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 32
6, column 86) The name 'OwltrOps' does not exist in the class or namespace 'Serv
er.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 32
8, column 8) The name 'OwltrOps' does not exist in the class or namespace 'Serve
r.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 33
3, column 86) The name 'OwltrOps' does not exist in the class or namespace 'Serv
er.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 33
5, column 8) The name 'OwltrOps' does not exist in the class or namespace 'Serve
r.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 34
0, column 86) The name 'OwltrOps' does not exist in the class or namespace 'Serv
er.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 34
2, column 8) The name 'OwltrOps' does not exist in the class or namespace 'Serve
r.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 34
9, column 85) The name 'OwltrOps' does not exist in the class or namespace 'Serv
er.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 35
1, column 8) The name 'OwltrOps' does not exist in the class or namespace 'Serve
r.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 35
5, column 85) The name 'OwltrOps' does not exist in the class or namespace 'Serv
er.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0234: (line 38
3, column 16) The type or namespace name 'OwltrOps' does not exist in the class
or namespace 'Server.daat99.Daat99OWLTR' (are you missing an assembly reference?
)
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0246: (line 38
9, column 52) The type or namespace name 'OwltrOps' could not be found (are you
missing a using directive or an assembly reference?)
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 39
0, column 5) The name 'OwltrOps' does not exist in the class or namespace 'Serve
r.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0103: (line 41
3, column 9) The name 'OwltrOps' does not exist in the class or namespace 'Serve
r.daat99.Daat99CustomOWLTRGump'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0117: (line 70
0, column 10) 'Server.daat99.Daat99OWLTR' does not contain a definition for 'Sta
ticHolders'
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0246: (line 70
3, column 4) The type or namespace name 'NewDaat99Holder' could not be found (ar
e you missing a using directive or an assembly reference?)
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0246: (line 70
4, column 37) The type or namespace name 'dh' could not be found (are you missin
g a using directive or an assembly reference?)
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0246: (line 72
6, column 9) The type or namespace name 'dh' could not be found (are you missing
 a using directive or an assembly reference?)
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0246: (line 73
0, column 131) The type or namespace name 'dh' could not be found (are you missi
ng a using directive or an assembly reference?)
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0246: (line 73
6, column 29) The type or namespace name 'dh' could not be found (are you missin
g a using directive or an assembly reference?)
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0246: (line 73
6, column 75) The type or namespace name 'dh' could not be found (are you missin
g a using directive or an assembly reference?)
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0246: (line 75
7, column 29) The type or namespace name 'dh' could not be found (are you missin
g a using directive or an assembly reference?)
 - Error: Scripts\CFTB v[3].0.2\Daat99 Control Center Gumps.cs: CS0246: (line 75
7, column 75) The type or namespace name 'dh' could not be found (are you missin
g a using directive or an assembly reference?)
 
Scripts: One or more scripts failed to compile or no script files were found.
 - Press return to exit, or R to try again.
 

frank

Wanderer
new error

i used daat control gump and it starts up just fine. is there going to be something missing that should be in the gump with not using the new control gump?
 

dracana

Sorceror
Issue in Tinker config files

In the Tinker .cfg files, Nails are incorrectly set to 0x102C. This is MouldingPlane. The itemid should be 0x102E.
 

Rosey1

Wanderer
i'm having trouble combining with the music instrument bods. it keeps saying "the item is not on the request" but it is.
 

Rosey1

Wanderer
well it could very well be just me too but if someone else has the problem, i'd like to know or i'll have to start digging and wonder where i screwed up.
 

slayer1ss

Sorceror
and one from me... ın tınker.cfg "scrıbes pen" ıs labeled as "pen and ınk" and thıs ıs rather confusıng for players :p
 
The Saw

Isn't the housebuilding saw addon fixed yet?
It works fine. Everyone tells me it doesn't, but I double click on it and the menu pos up. so I don't know how to help you with that. All I did was edit the BaseAddon.cs just like the one I provided. Here is proof that it works:
 

Attachments

  • HouseBuildingSaw.jpg
    HouseBuildingSaw.jpg
    74 KB · Views: 26
Top