|
||
|
|||||||
| Custom Script Release Archive This is a pre-script database archive of what our users had released. |
|
|
Thread Tools | Display Modes |
|
|
#1 (permalink) |
|
Forum Expert
Join Date: Feb 2005
Location: USA
Age: 30
Posts: 335
|
On OSI there is a random chance you will get origami paper from a fan dancer Im not sure on the chances so im not adding the fan dancer to this post.
When you double click the Origami paper you will get a random origami shape (Butterfly, swan, songbird, frog, fish, intricate shape) Like on OSI the fish is more rare to get and only way to get the fish it to get drunk then double click the paper and you have a 61.5% chance you will get a fish when drunk. (Not sure if 61.5% is correct chances) I'll leave it up to you to add to fan dancer if you wish ![]() Just drop in your custom folder. Updated: 5/23/2005 Added backpack check Switch statement cleaned up Sound added Localized message added. |
|
|
|
|
#2 (permalink) |
|
Join Date: Oct 2002
Age: 23
Posts: 4,689
|
Looks good... anyone have info on the OSI specifics?
You can change the DoubleClick to look like this Code:
public override void OnDoubleClick( Mobile m )
{
switch ( Utility.Random( 5 + (m.BAC > 0 ? 8 : 0) ) )
{
case 0: m.AddToBackpack( new OrigamiButterfly() ); break;
case 1: m.AddToBackpack( new OrigamiSwan() ); break;
case 2: m.AddToBackpack( new OrigamiSongbird() ); break;
case 3: m.AddToBackpack( new OrigamiShape() ); break;
case 4: m.AddToBackpack( new OrigamiFrog() ); break;
default: m.AddToBackpack( new OrigamiFish() ); break;
}
Delete();
}
|
|
|
|
|
#6 (permalink) | |
|
Forum Expert
Join Date: Feb 2005
Location: USA
Age: 30
Posts: 335
|
Quote:
Doing it that way will give a drunk person 100% chance of getting a fish though wont it? |
|
|
|
|
|
#7 (permalink) |
|
Forum Expert
Join Date: Feb 2004
Age: 27
Posts: 2,047
|
Thanks for the answer
Sad as it is to say, stratics has NOTHING on Origami! The only thing I have found about it is what we all know, Fan Dancers have a random chance to drop an Origami Paper.*edit* The best I could find was a 1:6 chance, but that wasn't official, just from someone testing it out. There was also someone saying 1:5, but again, not official. And these are the chances to get a fish from being drunk, not to get Origami at all. On that, I could find nothing. |
|
|
|
|
#9 (permalink) |
|
Join Date: Sep 2004
Location: Albany, Ga. USA
Age: 50
Posts: 27
|
I used this script ,"nice". I had fandancers just dropping origamis, this makes it more OSi like. BTW, I added a few tweaks of my own, they maynot be "osi like", but I always like more effects.
I added m.PlaySound (0x502);//Origami paper folding sound.0x501-502-503 and m.SendMessage(0x33, "You masterly create a piece of origami art!!" ); and m.SendMessage(0x33, "You masterly create a piece of orgami art, using the secret drunken style!!" ); |
|
|
|
|
#10 (permalink) |
|
Account Terminated
Join Date: Apr 2004
Location: Titusville PA
Age: 26
Posts: 975
|
I think the chance of getting the paper is about the same as getting a picnic basket from ants but I dont know the exact rate. I just know its VERY hard to get them on OSI Ive only gotten one or 2 the entire time ive played. Its got to be like 1 in 200 or more though because ive killed hundreds of them and only gotten 1 or 2.
|
|
|
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|