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 06-22-2006, 09:27 PM   #1 (permalink)
Forum Newbie
 
Join Date: Jan 2006
Age: 29
Posts: 39
Send a message via AIM to vampyerskss Send a message via Yahoo to vampyerskss
Default WaxCrafting (2.0)

Heres the update to Waxcrafting...I don't know who the Author was to this but once agian its very nice...

Theres also no installation instructions in the download but DefWaxCrafting i dumped in my Scripts folder under engines\Craft

and the rest went into my customs folder

Theres a quest involved in this system which really doesn't give any specifics on where its placed so just place it where ever
Attached Files
File Type: rar WaxCrafting US.rar (30.5 KB, 176 views)

Last edited by vampyerskss; 06-22-2006 at 09:33 PM.
vampyerskss is offline  
Old 06-22-2006, 09:45 PM   #2 (permalink)
Forum Expert
 
Join Date: Sep 2004
Age: 31
Posts: 677
Default

Sounds great. I'm going to take a look at it as soon as I get the shard updated and ready to accept more scripts.. mua ha ha ha! *cough cough*
Vhaerun is offline  
Old 06-22-2006, 10:02 PM   #3 (permalink)
Forum Novice
 
Join Date: Jun 2006
Location: Lakw Worth, Fla
Age: 46
Posts: 199
Send a message via ICQ to Hanse the Insane
Default

after I installed it, I have this error:

RunUO - [www.runuo.com] Version 2.0, Build 2357.32527
Core: Running on .NET Framework Version 2.0.50727
Core: Optimizing for 2 processors
Scripts: Compiling C# scripts...failed (3 errors, 0 warnings)
Errors:
+ custom/WaxCrafting US/HoneycombProcessingKettleKesselQuest/Items/HoneycombPro
cessingKettle.cs:
CS0234: Line 14: The type or namespace name 'Scripts' does not exist in the
namespace 'Server' (are you missing an assembly reference?)

Can someone please explain how I may fix this?
Hanse the Insane is offline  
Old 06-22-2006, 10:32 PM   #4 (permalink)
Forum Expert
 
Join Date: Sep 2004
Age: 31
Posts: 677
Default

You need to post the code for the script that's giving you the error, else the only one that could help is Vampyreskss.
Vhaerun is offline  
Old 06-22-2006, 10:59 PM   #5 (permalink)
Forum Novice
 
Join Date: Jun 2006
Location: Lakw Worth, Fla
Age: 46
Posts: 199
Send a message via ICQ to Hanse the Insane
Default

Sorry about that, I am rather new at this, here is the code:

/* Made by Sommy for Splitterwelt.com
* Das Script darf frei benutzt werden solange der Header erhalten bleibt.
* Bei Feedback bitte mail an webmaster@sommys.com oder
* PM auf www.run-uo.de
* Date: 02.03.2005
* Version 1.0
* Honigwaben Schleuder
*/

using System;
using Server;
using Server.Items;
using Server.Network;
using Server.Scripts;


namespace Server.Items
{


public class HoneycombProcessingKettle : Item
{

[Constructable]
public HoneycombProcessingKettle() : base( 0x9ED )
{
Name = "Honeycomb Processing Kettle";
this.Weight = 10.0;
}


public override void OnDoubleClick( Mobile from )
{
Container pack = from.Backpack;

if( from.InRange( this.GetWorldLocation(), 1 ) )
{

if (pack != null && pack.ConsumeTotal( typeof( HoneyComb ), 1 ) )
{
from.SendMessage( "*You centrifuge the honeycomb and separate honey and wax*" );

{

from.AddToBackpack( new RawBeeswax() );
from.AddToBackpack( new JarHoney() );
}
}

else
{
from.SendMessage( "You need a honeycomb to use in this kettle" );
return;
}
}



else
{
from.SendMessage( "You are too far away from this" );
return;
}

}
public HoneycombProcessingKettle( Serial serial ) : base( serial )
{
}



public override void Serialize( GenericWriter writer )
{
base.Serialize( writer );

writer.Write( (int) 0 ); // version
}

public override void Deserialize( GenericReader reader )
{
base.Deserialize( reader );

int version = reader.ReadInt();
}
}

}
Hanse the Insane is offline  
Old 06-23-2006, 04:37 AM   #6 (permalink)
Forum Expert
 
Manu's Avatar
 
Join Date: Jul 2005
Location: München/Deutschland (Munich/Germany)
Age: 27
Posts: 1,939
Send a message via ICQ to Manu Send a message via Skype™ to Manu
Default

Simply delete the line "using Server.Scripts;"

Quote:
Originally Posted by vampyerskss
I don't know who the Author was to this but once agian its very nice...
That would be me Thanks for converting it
__________________
http://www.gecko-entertainment.net/blog
Another pathetic weblog. Again. Get to know the real Manu, if you're really bored.
Manu is offline  
Old 06-23-2006, 09:13 AM   #7 (permalink)
Forum Expert
 
Liacs's Avatar
 
Join Date: Mar 2004
Location: Belgium / Germany
Age: 31
Posts: 1,008
Send a message via MSN to Liacs
Default

just one advise, vampyerskss: you should rather dump everything into your custom folder (can create as many subfolders as you like), because whenever you screw up your server and have to redownload RUNUO 2.0 the defwaxcrafting script will be gone for good...

Just a hint: I created different folders such as commands, mobiles, skills and so on to be able to track my custom scripts. That is what I learned from working with Runuo (as a complete noob)
__________________
;)My C# Bookshelf (carpented by Soultaker);)

BTW: Please ask questions in the adequat forum and not on a private message! Otherwise nobody can learn from it!
Liacs 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 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0 RC5