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 12-04-2005, 12:57 AM   #1 (permalink)
Account Terminated
 
Join Date: Nov 2005
Location: Effingham, Il
Age: 16
Posts: 50
Send a message via ICQ to Teh Gamer Send a message via AIM to Teh Gamer Send a message via MSN to Teh Gamer
Default Amursa and Amursa Suit

Ok, It took me about and hour and a half to make all this. In this you have AmursaSword, AmursaGorget, AmursaChest, AmursaLegs, AmursaShield, and Amursa.cs. Amursa is a 75% Warrior, and a 25% Mage. His Armor and such are not too urber, and they should all be a good addition to any server. Amursa armor has only Fire and Physical resistance, so the players will have to get the rest themselves. I havn't figured out how to make him drop his stuff, but maybe sombody will tell me how, and I can update this. Well have fun!
Attached Files
File Type: zip Amursa Stuff.zip (4.8 KB, 73 views)
Teh Gamer is offline  
Old 12-04-2005, 01:29 AM   #2 (permalink)
Forum Novice
 
Ryan_2005's Avatar
 
Join Date: Nov 2005
Location: North Carolina
Age: 20
Posts: 195
Default

Ok, man thats nice but I looked at the coding in your scipt for the armor peaces.
Code:
// Created by Teh Gamer
//From Edge of Chaos
using System;
using Server;
namespace Server.Items
{
 public class AmursaGorget : LeatherGorget
 {
 public override int InitMinHits{ get{ return 255;}}
 public override int InitMaxHits{ get{ return 255;}}
 [Constructable]
 public AmursaGorget()
     {
        Hue = 1157;
         Name = "Gorget of Amursa";
         ColdBonus = 0;
         EnergyBonus = 0;
         PhysicalBonus = 10;
         PoisonBonus = 0;
         FireBonus = 10;
         ArmorAttributes.SelfRepair = 3;
         Attributes.BonusDex = 0;
         Attributes.BonusInt = 0;
         Attributes.BonusStr = 8;
         Attributes.CastRecovery = 1;
         Attributes.CastSpeed = 2;
         Attributes.LowerManaCost = 0;
         Attributes.LowerRegCost = 0;
         Attributes.SpellDamage = 15;
         Attributes.WeaponDamage = 25;
         Attributes.WeaponSpeed = 0;
         LootType = LootType = Blessed;
     }
public AmursaGorget( 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();
         }
     }
}
That is you coding on your script and this is AnubisM
Code:
// Created by Sarenbou
using System;
using Server;
namespace Server.Items
{
 public class AbyssGloves : LeatherGloves
 {
 public override int InitMinHits{ get{ return 50000;}}
 public override int InitMaxHits{ get{ return 50000;}}
 [Constructable]
 public AbyssGloves()
     {
        Hue = 1172;
         Name = "Abyss Gloves";
         ColdBonus = 70;
         EnergyBonus = 70;
         PhysicalBonus = 70;
         PoisonBonus = 70;
         FireBonus = 70;
         ArmorAttributes.SelfRepair = 10;
         Attributes.BonusDex = 205;
         Attributes.BonusInt = 205;
         Attributes.BonusStr = 205;
         Attributes.CastRecovery = 10;
         Attributes.CastSpeed = 10;
         Attributes.LowerManaCost = 250;
         Attributes.LowerRegCost = 100;
         Attributes.SpellDamage = 165;
         Attributes.WeaponDamage = 200;
         Attributes.WeaponSpeed = 75;
         LootType = LootType.Blessed;
     }
public AbyssGloves( 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();
         }
     }
}
The coding is the same all you did was put your name add what shard your from and change some attributes around (If you didnt copy her base script thats kool iam just saying if you did you should give them 50% of the credit but)

but if you ask me ild think you copied it because ive ever seen a script be coded like AnubisM's is

Last edited by Ryan_2005; 12-04-2005 at 01:51 AM.
Ryan_2005 is offline  
Old 12-04-2005, 01:53 AM   #3 (permalink)
Account Terminated
 
Join Date: Nov 2005
Location: Effingham, Il
Age: 16
Posts: 50
Send a message via ICQ to Teh Gamer Send a message via AIM to Teh Gamer Send a message via MSN to Teh Gamer
Default

I used AnubisM's script as a templet, because its faster, I could do it myself, its just the spacing, but I also added in a few stats and such. Otherwise, it would take hours to accomplish 3 scripts, when I can make over 100 a day if I wanted.
Teh Gamer is offline  
Old 12-04-2005, 02:03 AM   #4 (permalink)
Forum Novice
 
Ryan_2005's Avatar
 
Join Date: Nov 2005
Location: North Carolina
Age: 20
Posts: 195
Angry

Code:
I used AnubisM's script as a templet, because its faster, I could do it myself, its just the spacing, but I also added in a few stats and such. Otherwise, it would take hours to accomplish 3 scripts, when I can make over 100 a day if I wanted.
Ok, And again that's kool sir but you can ask Anyone on runuo and they will tell you if they copy someones coding of a script they are going to give them 50% credit for it [It dont matter to me if you copy peoples scripts all iam saying is Dont remove the Credited By --------- When you didn't Credited it all you did was take 15 seconds to do some editing when it took them 1-2 hours of hard work to credit it Basically what iam saying is its pretty SH@TIE to remove the Credited By off the script and claim it as your own When you did basically nothing to it.....

Last edited by Ryan_2005; 12-04-2005 at 02:05 AM.
Ryan_2005 is offline  
Old 12-04-2005, 03:40 AM   #5 (permalink)
Forum Expert
 
Viago's Avatar
 
Join Date: Jun 2004
Location: Maine, USA
Age: 25
Posts: 2,703
Send a message via ICQ to Viago Send a message via AIM to Viago Send a message via MSN to Viago Send a message via Yahoo to Viago
Default

for a min there i thought it said Armarosa Armor, or how ever u spell her name lol
__________________
Does Sam Adam's Pee taste like Beer?
Viago 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