|
||
|
|||||||
| Custom Script Release Archive This is a pre-script database archive of what our users had released. |
|
|
Thread Tools | Display Modes |
|
|
#1 (permalink) |
|
Forum Novice
Join Date: Jun 2004
Age: 48
Posts: 781
|
Another simple one from the Spring 2006 collection.
![]() Code:
using System;
namespace Server.Items
{
[Furniture]
[Flipable(0x1945, 0x1946)]
public class CarvedWoodenScreen : Item
{
[Constructable]
public CarvedWoodenScreen()
: base(0x1945)
{
Weight = 20.0;
}
public CarvedWoodenScreen(Serial serial)
: base(serial)
{
}
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write((int)0);
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
}
__________________
If you PM me and ask me to write scripts for you I will add you to my ignore list. Please don't add me to your friends list, I have enough friends. Thx Last edited by CEO; 05-01-2006 at 03:45 AM. |
|
|
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|