Fergus |
 |
Wednesday, June 03 2009 @ 05:05 PM UTC (Read 5267 times) |
|
|

Badass
Status: offline
Registered: 05/03/09
Posts: 93
|
Well, now that CMJ has revealed the majority of S2's new changes, it's our turn to salivate over them.
So, what new feature/change excites you the most?
While I'm loving everything, especially the Scrapbots idea, the thing that has me most excited is the Improbable Labs and the Games within Games. We have an amazing amount of creative people here and I can't wait to see what we can do with this freedom. CMJ knows we have an amazing community here and he's going to use that to the fullest, and for that I salute him.
|
|
|
|
Gorbert |
 |
Wednesday, June 03 2009 @ 05:13 PM UTC |
|
|

Improbable Badass
Status: offline
Registered: 01/06/09
Posts: 350
|
Same here. Minigames and customization options are awesome and provide nice distractions when you feel like doing something different.
|
|
|
|
CavemanJoe |
 |
Wednesday, June 03 2009 @ 07:21 PM UTC |
|
|

Admin
 Status: offline
Registered: 02/24/08
Posts: 2281
|
Want an admin POV? Honestly for me it's gotta be IItems.
No more
set_module_pref("key",1,"hauntedhouse");
anymore - just a quick
iitems_give_item(hauntedhousekey);
and it'll show up in the Inventory for the player, complete with description, weight, usable points and all that other good stuff.
No more rewriting three damned modules, adding prefs and bollocking around for hours at a time just to add a new usable item. No more worrying about adding dangerously-overpowered items to the game, when I can just make them so heavy that the player can't carry anything but them without a severe Stamina penalty - and with newly-variable chance of finding any given item, we can finally get on to the creating, buying and selling of ultra-rare items.
Having said that, maybe the Stamina system is more exciting for me. It certainly took the longest to make, with balancing and all - with Stamina, I can add new things to do without worrying nearly as much about affecting game balance. Races now have more going for them than Turns, Travel, Attack and Defence. Everything's a bit more varied.
Although, Improbable Labs is also gonna be a hell of a lot of fun... 
|
|
|
|
Giuseppe Lorenzo |
 |
Wednesday, June 03 2009 @ 07:21 PM UTC |
|
|

Improbable Badass
Status: offline
Registered: 04/29/09
Posts: 155
|
I'm excited by most of the new features, but I'm a little apprehensive about the new Stamina system. And the removal of the Travel Agents got me a little concerned.
|
|
|
|
CavemanJoe |
 |
Wednesday, June 03 2009 @ 07:23 PM UTC |
|
|

Admin
 Status: offline
Registered: 02/24/08
Posts: 2281
|
The Travel Agents aren't, strictly speaking, going away - but they will be replaced with a more interesting way to travel instantly to a given Outpost.
|
|
|
|
Giuseppe Lorenzo |
 |
Wednesday, June 03 2009 @ 07:24 PM UTC |
|
|

Improbable Badass
Status: offline
Registered: 04/29/09
Posts: 155
|
Quote by: CavemanJoeThe Travel Agents aren't, strictly speaking, going away - but they will be replaced with a more interesting way to travel instantly to a given Outpost. Thank goodness. I use the Travel Agents quite a bit, going from IC to AceHigh every couple of days.
|
|
|
|
CavemanJoe |
 |
Wednesday, June 03 2009 @ 07:29 PM UTC |
|
|

Admin
 Status: offline
Registered: 02/24/08
Posts: 2281
|
There's lots of stuff going in S2 post-launch, enabled by the new Stamina and IItems systems, that I didn't even remember to mention in the post. 
You'll be able to buy a One-Shot Teleporter from any Outpost, which pretty well eliminates the need for a Travel Agents. The price, and stock available, will vary per Outpost and per day, globally. With the current Trading system, prices vary locally (IE for the player - every player's set of prices will be different) rather than globally (the prices are the same for everyone). Global variations will hopefully inspire some clan-coordinated economic buying and selling. Of course, sometimes the OST's will sell out, which makes things more interesting - but there'll be other reasons to get out and explore the World Map too, like wandering wormholes, strange fruit, and all sorts of cool stuff.
|
|
|
|
Giuseppe Lorenzo |
 |
Wednesday, June 03 2009 @ 07:31 PM UTC |
|
|

Improbable Badass
Status: offline
Registered: 04/29/09
Posts: 155
|
Quote by: CavemanJoe wandering wormholes, strange fruit, and all sorts of cool stuff. This made me squeal like a little girl. Science Fiction always makes me do that.
|
|
|
|
Gorbert |
 |
Wednesday, June 03 2009 @ 07:49 PM UTC |
|
|

Improbable Badass
Status: offline
Registered: 01/06/09
Posts: 350
|
Quote by: CavemanJoeWant an admin POV? Honestly for me it's gotta be IItems.
...
and it'll show up in the Inventory for the player, complete with description, weight, usable points and all that other good stuff.
No more rewriting three damned modules, adding prefs and bollocking around for hours at a time just to add a new usable item. No more worrying about adding dangerously-overpowered items to the game, when I can just make them so heavy that the player can't carry anything but them without a severe Stamina penalty - and with newly-variable chance of finding any given item, we can finally get on to the creating, buying and selling of ultra-rare items.
Ok, I definitely like that. Brings me back to the days of playing Morrowind--which, incidentally, was a horrendously glitchy game (what? I'm going to drown because I got caught on a piece of seaweed?! I have a sword!). Here's hoping S2 runs better
|
|
|
|
CavemanJoe |
 |
Wednesday, June 03 2009 @ 07:49 PM UTC |
|
|

Admin
 Status: offline
Registered: 02/24/08
Posts: 2281
|
An example of the versatility of IItems (and this will probably only make sense to LotGD veterans, PHP coders or ultra-nerds like me):
Player gets a bottle of juice (iitems_give_item(bottleofjuice)).
Player can drink the juice for an admin-settable Stamina point restoration (iitems_use_item(bottleofjuice) -> hook into stamina-food -> look for "edibleitem" flag -> if set, look for Nutrition, Fat, Fullness -> return to use_item function -> hook into staminasystem -> look for "staminarestore" flag -> increment Stamina).
iitems_destroy_item(bottleofjuice);
iitems_give_item(emptybottle);
Player now has "Use Bottle" nav appear during forest fights in fightnav-specialties hook - the player can throw the empty bottle at the monster.
Further checks via "iitems_has_item(emptybottle);" in modules will allow the player to refill the bottle, sell it, smack someone over the head with it in the pub, melt it down and turn it into something else - none of this functionality is coded at present, of course, but the system is designed from the ground up to do anything I want with it in the future, without having to rewrite the core IItems program. 
...if this all seems rather underwhelming (wow, man, you can drink from a bottle and then chuck it at a monster, big fekkin' deal), try coding it sometime. Likewise, try making it so that a player with a hammer, two nails and a stick can construct a club.
|
|
|
|
Gorbert |
 |
Wednesday, June 03 2009 @ 07:54 PM UTC |
|
|

Improbable Badass
Status: offline
Registered: 01/06/09
Posts: 350
|
Underwhelming? Not at all. I love the idea of versatile items. Hitting someone with a beer bottle amuses me greatly.
Incidentally, can I use a bar stool as a weapon? Because I have some (unintentional) experience with that
|
|
|
|
CavemanJoe |
 |
Wednesday, June 03 2009 @ 07:59 PM UTC |
|
|

Admin
 Status: offline
Registered: 02/24/08
Posts: 2281
|
MOAR:
For most of Improbable Island's first year, development has been an absolute pain in the arse. Most of the time I've spent with the core code has been made up of wondering why the hell it wasn't designed to do XYZ - or being afraid to do A because it impacts on B and C.
For the past eight months - yes, you read that right - I've been developing and testing systems that will cope with any idea I might have in the future, and let me build that new idea very quickly. In short, we're going to see a period of vastly accelerated development - adding new content is so easy for me now, and I know the new systems will take whatever I can throw at them without having to be rebuilt (I know this because I've deliberately built useless testing modules to interact with IItems in horrendously convoluted ways that I would never dream of using in a live game, and they've all worked flawlessly). Combine this with Improbable Labs, you've got a game that has new content every week.
I'm really, really, really looking forward to releasing this.
|
|
|
|
CavemanJoe |
 |
Wednesday, June 03 2009 @ 08:00 PM UTC |
|
|

Admin
 Status: offline
Registered: 02/24/08
Posts: 2281
|
Quote by: GorbertUIncidentally, can I use a bar stool as a weapon? Because I have some (unintentional) experience with that
If you're willing to carry it around in your Bandolier, yes.
(I'll need to make a post about the weight limits in the IItems system at some point... don't want people getting worried unnecessarily...)
|
|
|
|
Bernard |
 |
Wednesday, June 03 2009 @ 08:40 PM UTC |
|
|

Improbable Badass
Status: offline
Registered: 10/26/08
Posts: 368
|
...if this all seems rather underwhelming (wow, man, you can drink from a bottle and then chuck it at a monster, big fekkin' deal), try coding it sometime. Likewise, try making it so that a player with a hammer, two nails and a stick can construct a club.  [/p]
I can open a nightclub?!
|
|
|
|
Hermein |
 |
Wednesday, June 03 2009 @ 08:55 PM UTC |
|
|

Improbable Badass
Status: offline
Registered: 09/11/08
Posts: 126
|
Quote by: Bernard
...if this all seems rather underwhelming (wow, man, you can drink from a bottle and then chuck it at a monster, big fekkin' deal), try coding it sometime. Likewise, try making it so that a player with a hammer, two nails and a stick can construct a club.
I can open a nightclub?!
You can make a club that you can use on people at night, which, you know, is somewhat similar. They'll have a headache the following morning, at least.
|
|
|
|
Bernard |
 |
Wednesday, June 03 2009 @ 09:33 PM UTC |
|
|

Improbable Badass
Status: offline
Registered: 10/26/08
Posts: 368
|
Quote by: HermeinQuote by: Bernard
...if this all seems rather underwhelming (wow, man, you can drink from a bottle and then chuck it at a monster, big fekkin' deal), try coding it sometime. Likewise, try making it so that a player with a hammer, two nails and a stick can construct a club.
I can open a nightclub?!
You can make a club that you can use on people at night, which, you know, is somewhat similar. They'll have a headache the following morning, at least.
Yeah, but will they be able to dance?
|
|
|
|
Gorbert |
 |
Wednesday, June 03 2009 @ 10:33 PM UTC |
|
|

Improbable Badass
Status: offline
Registered: 01/06/09
Posts: 350
|
If you hit them hard enough, they will.
|
|
|
|
James Bond |
 |
Wednesday, June 03 2009 @ 10:34 PM UTC |
|
|

Badass
Status: offline
Registered: 05/07/09
Posts: 80
|
Quote by: BernardQuote by: HermeinQuote by: Bernard
...if this all seems rather underwhelming (wow, man, you can drink from a bottle and then chuck it at a monster, big fekkin' deal), try coding it sometime. Likewise, try making it so that a player with a hammer, two nails and a stick can construct a club.
I can open a nightclub?!
You can make a club that you can use on people at night, which, you know, is somewhat similar. They'll have a headache the following morning, at least.
Yeah, but will they be able to dance?
That would entirely depend on where, and how hard, you hit said person.
|
|
|
|
Anonymous: Symar |
 |
Wednesday, June 03 2009 @ 10:44 PM UTC |
|
|
|
Quote by: CavemanJoe
Player now has "Use Bottle" nav appear during forest fights in fightnav-specialties hook - the player can throw the empty bottle at the monster.
Further checks via "iitems_has_item(emptybottle);" in modules will allow the player to refill the bottle, sell it, smack someone over the head with it in the pub, melt it down and turn it into something else - none of this functionality is coded at present, of course, but the system is designed from the ground up to do anything I want with it in the future, without having to rewrite the core IItems program. 
...if this all seems rather underwhelming (wow, man, you can drink from a bottle and then chuck it at a monster, big fekkin' deal), try coding it sometime. Likewise, try making it so that a player with a hammer, two nails and a stick can construct a club.
Can I use the bottle to catch fairies, bugs, fish, small princesses, and gather cow's milk?
|
|
|
|
Hermein |
 |
Wednesday, June 03 2009 @ 11:33 PM UTC |
|
|

Improbable Badass
Status: offline
Registered: 09/11/08
Posts: 126
|
Quote by: Symar
Can I use the bottle to catch fairies, bugs, fish, small princesses, and gather cow's milk?
Yes, but not in that order.
|
|
|
|