Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

Game idea with potential for success

Apotheus Silverman
I write code.
Join date: 17 Nov 2003
Posts: 416
05-18-2005 10:17
The following is the initial documentation I came up with for a game idea based on the Cowboy Bebop anime series. Game play would span the entire SL world. Development should be based on formalized standards so anyone can contribute items.

The basic premise is you can visit a kiosk and sign up to play as a bounty hunter or as a villain. If you play as a bounty hunter, you will be given a list of villains to choose from. Bounty hunters can only chase one villain at a time. It can be a very high-stakes game if played for money. Villains have more risk but higher rewards, and bounty hunters have somewhat less risk and slightly lower rewards.

I give this idea to the public because I don't have any chance whatsoever of getting around to this within any reasonable time. The SL development environment may not be ready for this type of game yet, as it requires low latency communications for smooth play.

I believe Azelda Garcia may have already created something vaguely similar to this.



Bounty Hunter - SL-wide combat for money
========================================

Player Experience
=================
Sign up to play as a Villain:
1. Choose free or purchasable weapons.
2. Pay into the Bounty Hunter kiosk the amount (L$30 minimum?) you are willing to risk, and the amount you want your multiplier to be. This means that if someone wants to hunt you, they have to pay that amount.
3. The kiosk will ask for an image. The image will be optional, via dialog.
4. The Villain will be vulnerable immediately.

Sign up to play as a Hunter:
1. Choose free or purchasable weapons.
2. Villains are listed with their deposit amounts. Pay the kiosk the deposit amount.
3. The Hunter will be vulnerable after 1-2 minutes(?). This should reduce the possibility of Villains (or other Hunters) camping at the kiosks only to kill the Hunters before they have a chance to arm themselves.

Kiosks:
*Lists villains with name, kills, last known sim (weapons will tell the server what sim they are in), image if available, deposit requirement, and current worth.

-Villains get bigger, better weapons for free.
-Villain and Hunter weapons will be keyed to the villain so they cannot interfere in other fights.
-Weapons will not activate immediately upon attachment because they have to contact the server and get their target lists.
-Both Villains and Hunters can pay extra for better weapons.
-Take commissions (10%?) upon someone's death. If someone withdraws their deposit before they die, their own deposit is not charged commission, but whatever kills they have racked up are charged.
-Villain worth only increases with kills. A Villain can cash out at any time and his/her Hunters will have their deposits refunded in full.
-If a Villain and Hunter die at the same time, regardless of whose weapon caused it, the Hunter gets paid. Will need to do a bit of work to figure out the logic for this case. Maybe wait a few seconds after a Villain dies and if a Hunter dies in that time as well... what happens to the money? What if 5 Hunters and a Villain all die at once? Keep the money?
-Another possible situation is that Hunter A kills Villain, but then Hunter B immediately kills Hunter A. I think in this situation Hunter A should get the money.

-Have a free demo mode with limited weapons and limited Villain lifespan?

Damage System ideas
===================
-The system must NOT rely on the intended victim to be holding a weapon or other attachment for someone to be killed, as this would allow cheating to occur.

All weapons will stay in constant contact with the server so it always has a current list of its targets. Everyone in the same game (the villain and its hunters) can kill each other, with all Hunters killed adding to the Villain's worth.
-This means Hunters can kill Hunters to increase the pot if they want to.
-This also means Hunters can kill themselves with bombs.
-This also means players will be somewhat vulnerable in no-build and no-script areas.

-Need to determine how to report damage. Damage needs to be reported quickly and correctly without requiring the avatar being damaged to be wearing any attachments.
-In the case of bullets each bullet will have a script in it that a) turns the bullet phantom, nonphysical, and transparent upon collision, then b) if the collision is with an avatar it emails the server with the key and damage inflicted and dies. Bullets should be set to die after 5(?) seconds if no collision is detected.
-In the case of larger flying bombs I think what would be really neat is to have schrapnel -- The bomb rezzes or contains schrapnel prims, then when the main bomb detects a collision, it goes phantom, unlinks, and the whole thing blows up (spewing appropriate particles) and the schrapnel contain scripts just like the bullets. At the same time as it blows up it does a sensor scan and pushes any participating players accordingly. I *hope*
this is possible... would be a neat effect.
-When the server receives a damage report it updates the database accordingly, then forks processes to send the update to all the "Gear" that need the update (armor?).
-Damage reports received after the Villain is dead are ignored.
-This system will probably be too slow for a fast-action fight, although it will be accurate.

Gear
====
Weapons
-------
Obligatory hunting knife (free)
Swords
A few different pistols (free)
Sniper rifle
Assault rifles / guns (automatic / semiautomatic) (some free for Villain)
Laser guns
High-power Turret (very expensive, will allow kills while user is offline)
Long-range high-calibre gun
Cruise missile using autopilot script(? would assume knowledge of pinpoint location)
Grenades / Grenade launchers
Rocket laucher / Heat-seeking missiles
Block of C4 with timer (dialog-based set timer menu and touch-activated timer)

Vehicles (hopefully)
--------------------
-Vehicles would take damage before player
-Vehicles will be no-copy and relatively cheap (cheaper than most weapons)
Truck / Jeep without weapons
James Bond car with weapons
Helicopter with guns
Airplane with guns
Jet with bombs
Hovercraft / spaceship looking thing with laser guns
Tank

Tools
-----
Proximity Detector
Armor

Database
========
*Will need transactions, so use InnoDB tables

Users
-----
UserID int unsigned not null auto_increment primary key
Name varchar(??) not null
Key varchar(??) not null
LifetimeKills int unsigned not null default 0
Balance int not null default 0

Games
-----
GameID int unsigned not null auto_increment primary key
Name varchar(30) not null default ''
Deposit int unsigned not null default 0
Worth int unsigned not null default 0
Start datetime not null
End datetime null
WinnerKey varchar(??) null
WinnerName varchar(??) null

Players
-------
PlayerID int unsigned not null auto_increment primary key
UserID int unsigned not null
GameID int unsigned not null
PlayerTypeID int unsigned not null
HitPoints int not null default 1000
Region varchar(??) null
Kills int unsigned not null default 0

PlayerTypes
-----------
PlayerTypeID int unsigned not null auto_increment primary key
Name varchar(30) not null
('Hunter', 'Villain')

HitPoints
---------
HitPointID bigint unsigned not null auto_increment primary key
PlayerID int unsigned not null
InflictedByPlayerID int unsigned not null
ReportedByPlayerID int unsigned not null
Adjustment int not null default 0
Microtime float() unsigned not null

Gear
----
GearID bigint unsigned not null auto_increment primary key
PlayerID int unsigned not null
GearTypeID int unsigned not null
XmlRpcKey varchar(??) null

GearTypes
---------
GearTypeID int unsigned not null auto_increment primary key
PlayerTypeID int unsigned not null
Name varchar(??) not null
-Other columns to enable/disable bits describing the gear's capabilities as far as the server is concerned?
ReceiveTargetUpdates bit not null default 0 --Not all gear should need target list updates
ReceiveHealthUpdates bit not null default 0 --Not all gear should need health information

UserHistory
-----------
UserHistoryID bigint unsigned not null auto_increment primary key
UserID int unsigned not null
UserHistoryTypeID int unsigned not null
Timestamp datetime not null
Description varchar(200) null
Amount integer bigint not null default 0
Balance integer bigint not null default 0

UserHistoryTypes
----------------
UserHistoryTypeID int unsigned not null auto_increment primary key
Name varchar(50) not null
_____________________
Apotheus Silverman
Shop SL on the web - SLExchange.com

Visit Abbotts Aerodrome for gobs of flying fun.
Dachiva DaSilva
Registered User
Join date: 25 May 2005
Posts: 2
05-26-2005 21:16
I'm new to this community. I can't even play yet cause I'm waiting on my graphics card to get here (ordered 2 days ago).

First of all, this seems like a great idea, though I'm sure you'll have people yellling about bombs goin off in public places and tanks rollin through and what not...not to say comprimises can't be made...anyway.

My question is this...is all that which was discussed possible? I'm an avid rpg/fps gamer and what lured me to SL is the ability to design new games. Like I said, I've got a chit graphics card, so I haven't been able to see much in game. How realistic is it? How good is gaming expirience on this platform? Can you build fast action first person shooters? Or fast paced real time combat rpg's? I know this is off subject for this thread, I just wanted to know what the quality was like in this new world. I appreciate any answers I get.

Thanks,

D
Satchmo Prototype
eSheep
Join date: 26 Aug 2004
Posts: 1,323
05-27-2005 08:46
From: Dachiva DaSilva
How good is gaming expirience on this platform? Can you build fast action first person shooters? Or fast paced real time combat rpg's? I know this is off subject for this thread, I just wanted to know what the quality was like in this new world. I appreciate any answers I get.


The gaming experience all depends on the game and the design of it. There are tons of games that are done well and are fun. As far as "face paced" goes, most people don't have the hardware/bandwidth to make SL run smooth enough for pure adrenelin "twitch'em" games.

This might be about to change at the end of July with SL 1.7 and Havok 2, but we won't know until it gets here.

You certainly have the building tools to build pretty immersive places.

I attached a screeshot from inside SL that could easily be mistaken for Xbox :-)
_____________________

----------------------------------------------------------------------------------------------------------------
The Electric Sheep Company
Satchmo Blogs: The Daily Graze
Satchmo del.icio.us
Nekokami Dragonfly
猫神
Join date: 29 Aug 2004
Posts: 638
05-28-2005 20:26
The concept also reminds me of Larry Niven's short story, "Tenth Victim." Intriguing. Not my kind of game, but it would be interesting to know if it could be done.

neko
Hiro Pendragon
bye bye f0rums!
Join date: 22 Jan 2004
Posts: 5,905
05-29-2005 23:28
Apo, I have plans to take Ronin Weapons to a grid-wide level later this summer. Drop me an IM online and perhaps we can brain storm? :)
_____________________
Hiro Pendragon
------------------
http://www.involve3d.com - Involve - Metaverse / Emerging Media Studio

Visit my SL blog: http://secondtense.blogspot.com
Lazarus Lumiere
Registered User
Join date: 4 Jun 2004
Posts: 106
05-30-2005 10:05
From: Nekokami Dragonfly
The concept also reminds me of Larry Niven's short story, "Tenth Victim." Intriguing. Not my kind of game, but it would be interesting to know if it could be done.

neko

Not trying to be overly pedantic, but the actual short story was "The Seventh Victim", written by the underated Robert Sheckley in 1953. It was made into a rather stylish Italian movie called "The Tenth Victim", starring Marcello Mastroianni and Ursula Andress, released in 1965.
_____________________
"Don't try to have the last word. You might get it."
Bond Harrington
Kills Threads At 500yds
Join date: 15 May 2005
Posts: 198
05-31-2005 05:55
I'd go with something more along the lines of Altman's Quintet, although the SL version would actually have a purpose to winning:

Instead of a straight "Hunter versus Villian" scenario, the players would be organized in a list. They are then designated Odd and Even. These numbers are not rankings but positions on the list. Anyone Odd is their friend and Even is their enemy, and vice versa.

As players are eliminated from the game, the list contracts, so if you start out as Number 20, and five people above you are eliminated, you'll end up Number 15. This means that you also go from an Even Number to an Odd Number, so if you were friends with Number 10 at the beginning of the game when you where Number 20, Number 10 is now your enemy as Number 15. This requires you to think strategically in eliminating other players, as your friend may become your enemy with your next kill.

There will need to be certain scripts for weapons and wearable prims for marking kills.
Karma Satyr
Little Tea Pot
Join date: 8 Jan 2004
Posts: 88
05-31-2005 08:24
The thing i like about these games is they are game wide.

I prejume you'd have to be wearing something but I like the idea of standing there talking to friends when all of a sudden to hunters fly in guns blazzing and I have to high tail it out of there. Adds a kind of suspense.

The problem with most games in Sl is you have to go somewhere special, and ussually the place is deserted and no one else is playing, these ideas would work because your always playing.
_____________________
Short and Stout!
Actually i'm more like a coffee plunger.