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!

Script Creator

S

System 32

Guest
Script Creator 0.0.10

0.0.10
* Armor generating codes rewritten
* Several bug fixes
* Improved user-friend interface, "next button" does not exist anymore
* Mobile generating added **
* Fixed many form-color errors which were causing in xp os
* Codes cleaned up, faster...
* Hueable item arts and mobile animations ( thank you arya ), useful infos added


Know Issues
*In the mobile generating system, if you set the loot item amount to 1, it will crash the shard (thanks to Apache for reporting )
*In the mobile generating system, if you set the BodyValue ID for 546, it will crash the application
*In the mobile generating system, if you set weapon abilities less than 3, it will give you an error on console
*There are some spacing errors in code-writing system

I guarantee it wont take more than 30 seconds to learn it and write your own script in 1 minute, give it a try !

Note/ i couldnt add all mobiles, i apologise, i have got a terrible flu for five days, and i dont think i can add them till i get my healt back, however you can create 300~ mobiles if you know the body value or if you press body convertor button =)

hope you like it, next releases coming soon
thanks

mobile generating picture


Language = C#
Platform = NetFrameWork 2

i will release source code when i finish this project ( if someone interests :rolleyes: )

/ note : program has some links on form which will redirect you myforums , please ignore it till i get my forums english thanks
/ note 2 : i am sorry for my bad english

*Thank you Arya, your artviewer is awsome
 

Attachments

  • Script Creator.rar
    159.3 KB · Views: 4,836

Malaperth

Wanderer
Well, I can understand you better than some people I know that have English as their first language. Also, the contribution is incredible and I look forward to checking it out!
 

HellRazor

Knight
Good job. Nice interface! Should make it a lot easier to make these types of scripts, especially for non-scriptors.
 

wannabe

Wanderer
very nice, just 1 suggestion, make a back button so if i want to make a chain mail chest but click legs i dont have to exit and start over

i tried using it on my test shard, so i made chainmail ar and got this prob

CS1002: Line 34: ; expected
CS1002: Line 34: ; expected
CS1519: Line 34: Invalid token ')' in class, struct, or interface member dec
laration
+ set of light/Gloves Of Light.cs:
CS1514: Line 14: { expected
CS1002: Line 14: ; expected
CS1519: Line 15: Invalid token '{' in class, struct, or interface member dec
laration
CS1002: Line 17: ; expected
CS1002: Line 37: ; expected
CS1002: Line 37: ; expected
CS1519: Line 37: Invalid token ')' in class, struct, or interface member dec
laration
+ set of light/Helmet Of Light.cs:
CS1514: Line 14: { expected
CS1002: Line 14: ; expected
CS1519: Line 15: Invalid token '{' in class, struct, or interface member dec
laration
CS1002: Line 17: ; expected
CS1002: Line 43: ; expected
CS1002: Line 43: ; expected
CS1519: Line 43: Invalid token ')' in class, struct, or interface member dec
laration
CS0101: Line 14: The namespace 'Server.Items' already contains a definition
for 'Helmet'
+ set of light/Legs Of Light.cs:
CS1514: Line 14: { expected
CS1002: Line 14: ; expected
CS1519: Line 15: Invalid token '{' in class, struct, or interface member dec
laration
CS1002: Line 17: ; expected
CS1002: Line 38: ; expected
CS1002: Line 38: ; expected
CS1519: Line 38: Invalid token ')' in class, struct, or interface member dec
laration
Scripts: One or more scripts failed to compile or no script files were found.
- Press return to exit, or R to try again.
 

Liacs

Sorceror
great work! And yeah, the backbutton would be nice... and the mobiles are not yet working? Can't wait for the next release!

Lia
 
S

System 32

Guest
Thank you very much :) the back button will be on next release

mobiles may take some days to be added, but i will add them as soon as possible
 
S

System 32

Guest
wannabe, can you post here the script that you created with this tool please, so i can see where is the wrong, thanks
 

AlexBF2142

Wanderer
like this program but when you try to make deamon bone armor it shows as unused??? wrong item id in cose???

thc\x love this program can't wait till you add quest's, every body rate this thread excellent give him some gold stars
 

wannabe

Wanderer
this is the script for my legs, all of them are roughly the same

/*
* Scripter :
* Author : Lord Mashadow // Avalon Team
* Generator : Avalon Script Creator
* Created at : 2/24/2007 10:47:04 AM
* Thank you for using this tool, feel free to visit our web site Sislerin Ardýndaki Ülke Avalon...
*/
using System;
using Server;
using Server.Items;

namespace Server.Items
{
public class Legs Of Light : RingmailLegs
{
[Constructable]
public Legs Of Light()
{
this.Weight = 10;
this.Hue = 1156;
this.Attributes.AttackChance = 5;
this.Attributes.BonusDex = 10;
this.Attributes.DefendChance = 5;
this.Attributes.Luck = 50;
this.Attributes.ReflectPhysical = 15;
this.Attributes.WeaponDamage = 15;

this.ArmorAttributes.SelfRepair = 2;

this.ColdBonus = 10;
this.EnergyBonus = 10;
this.FireBonus = 10;
this.PhysicalBonus = 10;
this.PoisonBonus = 10;
this.StrBonus = 5;
}

public Legs Of Light( 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();
}
}
}
 
S

System 32

Guest
hi, it gave you errors because you had used spaces in "add name" box, i wanted to mean by add mean box "class name" like when you try to call it ingame.
so dont use spaces, i will fix this in next version, you wont be able to press space button ;)
 
This looks great. Just a question havent downloaded yet. but, will this be able to modify clothing as well? That is one thing i wish the other programs had. Cant wait to try this. Think i will wait for the update though since it sounds like it will be soon. :)
 

AlexBF2142

Wanderer
can i have like a estimated date for when you will have the rest done cause this program is like "WOW" it just makes it so easy to make new armor it takes less then 30 seconds i mean i used to sit there finding the best script to base stuff off but this program does it for you,

keep up the good work ,i am looking forward to the quest's and seeing how easy it will be to make them:) :D :) :D

every one rate this thread excellent give it soem gold stars
 
Top