|
||
|
|||||||
| Custom Script Releases This forum is where you can release your custom scripts for other users to use. Please note: By releasing your scripts here you are submitting them to the public and as such agree to make them public domain. The RunUO Team has made its software GPL for you to use and enjoy you should do the same for anything based off of RunUO. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1327 (permalink) | ||
|
Forum Expert
Join Date: Mar 2004
Location: NorthCentral IL, USA
Age: 35
Posts: 3,848
|
Quote:
It's just a slight complaint, but I do really appreciate you keeping up with making changes to make Mondain's Legacy usable by those of us you would like to use them. Also that OnCarve change you added makes it possible for use to add other items that do something different in OnCarve. This just brought up something that was on a friend of mines shard, they had a Tanners Knife that did something similair to this a couple of years ago.
__________________
Quote:
Just a Simple Staff Tool You can leave me messages. Ernest Gary Gygax - Quote "I would like the world to remember me as the guy who really enjoyed playing games and sharing his knowledge and his fun pastimes with everybody else." |
||
|
|
|
|
|
#1328 (permalink) |
|
Forum Novice
|
You can see all changes through svn. For example you can view diffs of BaseCreature here: RunUOForge > Projects > Mondain's Legacy > SVN > Browse repository. It shows exactly what was changed. If thats what you mean.
__________________
A lawyer with a briefcase can steal more than a thousand men with guns. Do NOT PM me asking if I will script for your shard or send you files or anything else along those lines. |
|
|
|
|
|
#1329 (permalink) | ||
|
Forum Expert
Join Date: Mar 2004
Location: NorthCentral IL, USA
Age: 35
Posts: 3,848
|
Quote:
Sorry to derail the thread, but only making a suggestion. I'll be quiet about the subject from now on and just quietly watch for updates. I don't know about the 145 update until Johaibus (sp?) mentioned it having an issue with OnCarve.
__________________
Quote:
Just a Simple Staff Tool You can leave me messages. Ernest Gary Gygax - Quote "I would like the world to remember me as the guy who really enjoyed playing games and sharing his knowledge and his fun pastimes with everybody else." |
||
|
|
|
|
|
#1331 (permalink) |
|
Newbie
Join Date: Feb 2008
Age: 30
Posts: 23
|
Why are there alchemy recipes in DefTinkering?
Code:
public enum TinkerRecipes
{
InvisibilityPotion = 400,
DarkglowPotion = 401,
ParasiticPotion = 402,
EssenceOfBattle = 450,
PendantOfTheMagi = 451,
ResilientBracer = 452,
ScrappersCompendium = 453,
HoveringWisp = 454,
}
![]() |
|
|
|
|
|
#1332 (permalink) | ||
|
Forum Expert
Join Date: Mar 2004
Location: NorthCentral IL, USA
Age: 35
Posts: 3,848
|
Quote:
Yeah I noticed that too but I figured there was a reason and didn't try ot change it to go into Alchemy.
__________________
Quote:
Just a Simple Staff Tool You can leave me messages. Ernest Gary Gygax - Quote "I would like the world to remember me as the guy who really enjoyed playing games and sharing his knowledge and his fun pastimes with everybody else." |
||
|
|
|
|
|
#1333 (permalink) | ||
|
Forum Novice
Join Date: Mar 2004
Location: Wisconsin
Age: 45
Posts: 789
|
Quote:
Code:
public override void OnCarve( Mobile from, Corpse corpse )
{
if ( corpse.Carved )
base.OnCarve( from, corpse );
else if ( !corpse.Carved )
{
if (Utility.Random( 5 ) == 1 )
{
corpse.DropItem( new WormSilk() );
from.SendMessage( "You dig through the worm goo and find some silk!" );
corpse.Carved = true;
}
else
from.SendMessage( "You carve into the gooey worm corpse, but find nothing useful." );
corpse.Carved = true;
}
}
Is there and override I need to add if I wwanted to return this OnCarve? (this is not a biggie, just curious if someone knows right off the bat what I can do) Thanks! Koluch ![]()
__________________
Quote:
|
||
|
|
|
|
|
#1334 (permalink) | |
|
Forum Expert
|
Quote:
Code:
public override void OnCarve( Mobile from, Corpse corpse, Item item )
{
if ( corpse.Carved )
base.OnCarve( from, corpse, item );
__________________
In some cases stupid makes you win-Radwen |
|
|
|
|
|
|
#1335 (permalink) | |
|
Forum Expert
Join Date: Mar 2004
Location: NorthCentral IL, USA
Age: 35
Posts: 3,848
|
Looks like the SVN for this is down...
__________________
Quote:
Just a Simple Staff Tool You can leave me messages. Ernest Gary Gygax - Quote "I would like the world to remember me as the guy who really enjoyed playing games and sharing his knowledge and his fun pastimes with everybody else." |
|
|
|
|
|
|
#1337 (permalink) | |
|
Forum Expert
Join Date: Mar 2004
Location: NorthCentral IL, USA
Age: 35
Posts: 3,848
|
I can update the SVN for RunUO 2.0 fine though so it's got to be partly up.
__________________
Quote:
Just a Simple Staff Tool You can leave me messages. Ernest Gary Gygax - Quote "I would like the world to remember me as the guy who really enjoyed playing games and sharing his knowledge and his fun pastimes with everybody else." |
|
|
|
|
|
|
#1338 (permalink) | |
|
Forum Expert
|
Quote:
__________________
In some cases stupid makes you win-Radwen |
|
|
|
|
|
|
#1339 (permalink) | ||
|
Forum Expert
Join Date: Mar 2004
Location: NorthCentral IL, USA
Age: 35
Posts: 3,848
|
Quote:
PS) I keep getting those f'd up.
__________________
Quote:
Just a Simple Staff Tool You can leave me messages. Ernest Gary Gygax - Quote "I would like the world to remember me as the guy who really enjoyed playing games and sharing his knowledge and his fun pastimes with everybody else." |
||
|
|
|
|
|
#1340 (permalink) |
|
Forum Novice
Join Date: Dec 2006
Posts: 126
|
http://www.runuoforge.org/gf/project...legacy/scmsvn/ is where it is supposed to be. But what happened to the website? All I get is error 404 page not found.?.?.? Was working till a couple days ago.
|
|
|
|
|
|
#1341 (permalink) | |
|
Forum Expert
|
Quote:
![]()
__________________
In some cases stupid makes you win-Radwen |
|
|
|
|
|
|
#1342 (permalink) |
|
Forum Expert
Join Date: Jun 2006
Age: 31
Posts: 304
|
ok, so what do we do now? is this project dead? or is it just another bad link? its been a few days now so i figured there would be an update or a temporary location, even an updated download on the first post.
anyone know whats going on here? |
|
|
|
|
|
#1343 (permalink) |
|
Forum Novice
Join Date: Dec 2006
Posts: 126
|
Connect UO went down and no one knows when it will be back or if it will.
Runuoforge goes down and no one knows when or if it will be back. ![]() I am starting to see a frightening pattern here. What's next? ![]() Dare i ask..... |
|
|
|
|
|
#1344 (permalink) | ||
|
Forum Expert
Join Date: Mar 2004
Location: NorthCentral IL, USA
Age: 35
Posts: 3,848
|
Quote:
__________________
Quote:
Just a Simple Staff Tool You can leave me messages. Ernest Gary Gygax - Quote "I would like the world to remember me as the guy who really enjoyed playing games and sharing his knowledge and his fun pastimes with everybody else." |
||
|
|
|
|
|
#1345 (permalink) |
|
Forum Novice
Join Date: Dec 2006
Posts: 126
|
Same time????? Connect UO has been down for over a month. Runuoforge has been down for about a week.
Correct me if I am wrong. But isn't Runuoforge and ConnectUO two completely differently entities and hosted on different servers? |
|
|
|
|
|
#1346 (permalink) |
|
Forum Expert
|
The fact remains that it is down due to a hardware failure. Grab a cup of patience and chill out. These people run these servers at no charge to you, if they wanted to, they could pull all their servers tomorrow and not owe you an explanation at all. RunUOForge will be up as soon as they can get to it. The RunUO team is not comprised of magicians that can fix everything with a magical wave of their hand.
__________________
In some cases stupid makes you win-Radwen |
|
|