Go Back   RunUO - Ultima Online Emulation > RunUO > Custom Script Releases

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.

Reply
 
Thread Tools Display Modes
Old 07-20-2006, 01:55 PM   #1 (permalink)
Forum Expert
 
kaball's Avatar
 
Join Date: Apr 2005
Location: Portugal \m/
Age: 22
Posts: 411
Send a message via MSN to kaball
Default webgate

simply , when a play passes through the gate, it launchs the browser to a website, exemple " vote fore us ! ".

im open to any critic, sugestions etc.

=)
Attached Files
File Type: rar WebGate.rar (635 Bytes, 315 views)
kaball is offline   Reply With Quote
Old 07-20-2006, 07:56 PM   #2 (permalink)
Forum Expert
 
A_Li_N's Avatar
 
Join Date: Apr 2004
Location: Another state of mind
Age: 27
Posts: 2,875
Default

You should make it a spider web ID
/corny

Might give the option to open a browser.
A_Li_N is offline   Reply With Quote
Old 07-21-2006, 11:02 AM   #3 (permalink)
Forum Expert
 
kaball's Avatar
 
Join Date: Apr 2005
Location: Portugal \m/
Age: 22
Posts: 411
Send a message via MSN to kaball
Default

i tought in a way of people vote , in a starting room " where character init."
i put a teleport and when they pass trought it to enter haven , the webbrowser opens and asks them to vote, that was the original idea

eheh but the spider webs are nice ehehhe =P ... but the name is confusing ... should it be ... " Web's spider web " lol
kaball is offline   Reply With Quote
Old 06-24-2007, 12:29 PM   #4 (permalink)
Forum Expert
 
Join Date: Jun 2007
Posts: 367
Default

i know this is probably and old thread but i need help! I added this into the customs folder it complied and everything but now im trying to add it on my shard i tried [add WebGate like its defined in the script it didnt work i just tried [add gate also so i can get a list of gate types it also didnt find any type of web gates....thanks for the help in advance
__________________

Shard Name: MurDeR Go RounD
Shard IP: Murdergoround.servegame.com
The Ultimate PvP Deed
Flats is offline   Reply With Quote
Old 06-25-2007, 08:54 AM   #5 (permalink)
Forum Expert
 
Join Date: Jun 2007
Posts: 367
Default

nevermind i fixed it thanks though
__________________

Shard Name: MurDeR Go RounD
Shard IP: Murdergoround.servegame.com
The Ultimate PvP Deed
Flats is offline   Reply With Quote
Old 06-25-2007, 03:32 PM   #6 (permalink)
Forum Novice
 
xxx007xxx's Avatar
 
Join Date: Dec 2005
Location: Quebec
Age: 21
Posts: 174
Send a message via MSN to xxx007xxx
Default Nice spawm code!

like this player will hate your shard !
Code:
public override bool OnMoveOver( Mobile m )
		{
			if ( m.Alive )
			{
				m.PlaySound( 0x214 );
				m.FixedEffect( 0x376A, 10, 16 );

				int i = 0;
				
				while (i < 52)
				{
				 m.LaunchBrowser( "www.Runuo.com" ); 
				i++;
				}
                                
           }
			else
			{
				m.SendLocalizedMessage(2, "Your dead and can't use this" ); 
			}
thx nice code.
you could add a mobile list to know who vote.
__________________
Monster Creation V3.9
╔╗╔═╦╗
║╚╣║║╚╗
╚═╩═╩═╝
♠♣♥♦

Last edited by xxx007xxx; 06-25-2007 at 03:35 PM.
xxx007xxx is offline   Reply With Quote
Old 06-25-2007, 04:17 PM   #7 (permalink)
Forum Expert
 
Join Date: Jun 2007
Posts: 367
Default

Quote:
Originally Posted by xxx007xxx View Post
like this player will hate your shard !
thx nice code.
you could add a mobile list to know who vote.

How can you add a mobile list?? Sorry a bit new to RunUO Scripting hehe Any chance if you know how you could add it and let me know the code please? would really appreciate it!
__________________

Shard Name: MurDeR Go RounD
Shard IP: Murdergoround.servegame.com
The Ultimate PvP Deed
Flats is offline   Reply With Quote
Old 06-25-2007, 05:46 PM   #8 (permalink)
Forum Novice
 
xxx007xxx's Avatar
 
Join Date: Dec 2005
Location: Quebec
Age: 21
Posts: 174
Send a message via MSN to xxx007xxx
Default

Quote:
Originally Posted by Flats View Post
How can you add a mobile list?? Sorry a bit new to RunUO Scripting hehe Any chance if you know how you could add it and let me know the code please? would really appreciate it!
Generic List 2.0
from Faq
Basic Generics for .Net 2.0
or MSDN
List Generic Class (System.Collections.Generic)

some basic

List<string>
Add(m.Name);// add the name string of (m = Mobile)

write you list in console
Code:
if(from.AccessLevel > AccessLevel.Player)
				{
        Players.ForEach(
		delegate(string p)
        {
            Console.WriteLine(p);//display name string
        });
				//from.SendGump( new ListDisplay(from));
			}
or
List<Mobile>
Add(m);//m =Mobile

write you list in console
Code:
if(from.AccessLevel > AccessLevel.Player)
				{
        Players.ForEach(
		delegate(Mobile p)
        {
            Console.WriteLine(p);//display serial and name
        });
				//from.SendGump( new ListDisplay(from));
			}
You gave me an idea !

here is a list Generic List Book
__________________
Monster Creation V3.9
╔╗╔═╦╗
║╚╣║║╚╗
╚═╩═╩═╝
♠♣♥♦

Last edited by xxx007xxx; 06-27-2007 at 02:50 AM.
xxx007xxx is offline   Reply With Quote
Old 07-08-2008, 04:52 PM   #9 (permalink)
Newbie
 
Join Date: Dec 2005
Posts: 52
Default

Quote:
Originally Posted by kaball View Post
simply , when a play passes through the gate, it launchs the browser to a website, exemple " vote fore us ! ".

im open to any critic, sugestions etc.

=)

Link not work good ... 80% download and cant open this file


Anybody can re-send this file ??? plese

Last edited by kokosbytow; 07-20-2008 at 06:56 AM.
kokosbytow is online now   Reply With Quote
Old 08-15-2008, 04:11 AM   #10 (permalink)
Newbie
 
Join Date: Dec 2005
Posts: 52
Default

??????????????????????????
kokosbytow is online now   Reply With Quote
Old 08-15-2008, 10:11 AM   #11 (permalink)
Forum Novice
 
LadyRhia's Avatar
 
Join Date: Jan 2006
Location: New Port Richey Fl.
Age: 51
Posts: 174
Send a message via Yahoo to LadyRhia
Default

like many files here this one has bad CRC please fix and reupload it.
__________________
Lady Rhia AKA Misty Dain Owner Unicorn Heaven Where Unicorns Are a Specialty!
LadyRhia is offline   Reply With Quote
Old 09-13-2008, 02:36 PM   #12 (permalink)
Newbie
 
Join Date: Dec 2005
Posts: 52
Default

i wait wait .... and wait ... anybody cant help ??
kokosbytow is online now   Reply With Quote
Old 09-16-2008, 11:25 AM   #13 (permalink)
Newbie
 
Join Date: Dec 2005
Posts: 52
Question

anybody help me ? i need very need this script .. :/
kokosbytow is online now   Reply With Quote
Reply

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 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0 RC5