IPB

Welcome Guest ( Log In | Register )

 
Reply to this topicStart new topic
> Tabletop and Shadowland Opinions, wondering if there is a difference
Which type of game do you play and what do you think of how SR4 is looking compared to SR3
You cannot see the results of the poll until you have voted. Please login and cast your vote to see the results of this poll.
Total Votes: 81
Guests cannot vote 
Gambitt
post Aug 24 2005, 03:47 PM
Post #1


Target
*

Group: Members
Posts: 79
Joined: 8-October 02
Member No.: 3,425



EDIT: Sorry the title to this post said tabletop and shadowlands opinions... it should have read tabletop and online/mail opinions.
this was a mistake on my part due to ingorance of never having played online before.

I myself am a tabletop player with a regular group of friends. I check out the boards a fair bit, and grasp that their are a lot of people who play on the Shadowland BBS etc. What i was wondering was if there was a difference between the two types of playing methods in terms of what they thought of SR4.
We had a long SR3 campaign with chars with huge amounts of karma, which while massively fun was getting to the point where hundreds and hundreds of dice were rolled each combat turn, and even more rolled in karma rerolls. Dice pools, karma pools and skills were just getting too vast... so thats kind of a plus point for us with SR4. I can kind of see where this isnt so much of a problem with an internet/mail game where time isnt so much of an issue.
The whole new networkless matrix is also a plus for deckers who no longer have to spend large chunks of an evening isolated from the other players... again maybe this isnt so much of a problem for the internet games.
There were other thoughts too, but im tired and just in from work so cant think of them off the top of my head.

Also im fully aware this doesnt poll doesnt cover the large number of people who do both, but its really just to see if there is a split between the groups.
Go to the top of the page
 
+Quote Post
Kagetenshi
post Aug 24 2005, 03:48 PM
Post #2


Manus Celer Dei
**********

Group: Dumpshocked
Posts: 17,012
Joined: 30-December 02
From: Boston
Member No.: 3,802



Dude. There are people here who play online who do not have anything whatsoever to do with Shadowland.

You titled the poll appropriately, but I would encourage you strongly to retitle the thread.

You also could have easily accounted for people who do both. Scrap this thread and start over, maybe?

~J
Go to the top of the page
 
+Quote Post
Gambitt
post Aug 24 2005, 04:00 PM
Post #3


Target
*

Group: Members
Posts: 79
Joined: 8-October 02
Member No.: 3,425



suggest a new title if its going to offend anyone/inaccurate and ill change it.
As i say im tired from work and relaxing with my first beer of the evening so i wont be rewriting it.
Go to the top of the page
 
+Quote Post
Kagetenshi
post Aug 24 2005, 04:08 PM
Post #4


Manus Celer Dei
**********

Group: Dumpshocked
Posts: 17,012
Joined: 30-December 02
From: Boston
Member No.: 3,802



Understandable. New title, something like "SR4: Tabletop vs. Online Gaming" with "difference of opinions?" as the description perhaps?

~J
Go to the top of the page
 
+Quote Post
Gambitt
post Aug 24 2005, 04:34 PM
Post #5


Target
*

Group: Members
Posts: 79
Joined: 8-October 02
Member No.: 3,425



Sorry cant work out how to retitle it, so added an edit on my first post explaining.
I dont want to call it tabletop vs online gaming really as im not trying to alienate or compare one to the other, just trying to see if one community/method of playing SR varies in their opinion of the new version of the game.
Go to the top of the page
 
+Quote Post
Shadow_Prophet
post Aug 24 2005, 04:48 PM
Post #6


Moving Target
**

Group: Members
Posts: 445
Joined: 18-August 05
Member No.: 7,567



I play both but theres no option for that so i just voted for tabletop
Go to the top of the page
 
+Quote Post
Rolemodel
post Aug 24 2005, 04:52 PM
Post #7


Moving Target
**

Group: Members
Posts: 117
Joined: 17-February 05
Member No.: 7,094



Heh. Yeah. Wouldn't worry about it.

I think SR4 will lend itself well to the online community, or at the least, won't be more of a bitch to code than SR3.

-RM
Go to the top of the page
 
+Quote Post
nezumi
post Aug 24 2005, 05:06 PM
Post #8


Incertum est quo loco te mors expectet;
*********

Group: Dumpshocked
Posts: 6,548
Joined: 24-October 03
From: DeeCee, U.S.
Member No.: 5,760



Wooh, finally a poll I feel I can vote in without having the book!

I run online stuff, but don't code anything. The simplicity in rules only helps me if I'm explaining stuff to newbies. I like some of the additions, but truthfully, assuming it's added in SR3R, I'll probably just run that.
Go to the top of the page
 
+Quote Post
mfb
post Aug 25 2005, 03:34 AM
Post #9


Immortal Elf
**********

Group: Members
Posts: 11,410
Joined: 1-October 03
From: Pittsburgh
Member No.: 5,670



QUOTE (Kagetenshi)
Dude. There are people here who play online who do not have anything whatsoever to do with Shadowland.

do not listen to the blasphemer!
Go to the top of the page
 
+Quote Post
Ellery
post Aug 25 2005, 04:46 AM
Post #10


Moving Target
**

Group: Members
Posts: 778
Joined: 6-April 05
Member No.: 7,298



Coding a complex die mechanic is easy. Coding lots of individual modifiers is hard. SR4 seems to have almost as many modifiers as SR3, so I would expect it to be about equally hard. Where simplifications exist, they'll help, but things that "run fast" in play aren't necessarily faster to code. And computers are so fast that the time to compute the result is negligible.

For example, in C-ish languages, if you have a function called d6() that returns a number from 1 to 6:

CODE

/* This is for SR3! */
int sr3_roll(int tn,int rerolls)
{
 int result = d6();

 while ( (result%6)== 0 ) result += d6();

 if (result<tn && rerolls>0) result = sr3_roll(tn,rerolls-1);
 return result;
}

int sr3_successes(int tn,int rerolls,int dice)
{
 int success = 0;
 while (dice>0)
 {
   if (sr3_roll(tn,rerolls)) success++;
   dice--;
 }
 return success;
}


/*And this is for SR4!*/
int sr4_roll(int edge)
{
 int hits;
 int result=d6();

 if (result==6) hits = 1 + sr4_roll(edge);
 else if (result < 5)
 {
   if (edge>0) hits = sr4_roll(edge-1);
   else hits=0;
 }
 else hits =1;
 
 return hits;
}

int sr4_success(int edge,int dice)
{
 int success = 0;
 while (dice>0)
 {
   if (edge>0) success += sr4_roll(edge);
   else if (sr4_roll(edge)) success++;
   dice--;
 }
 return success;
}


Both easy enough. If you don't decide whether you use edge/karma in advance, it's a little more complex, but still, it's 50 lines of simple, straightforward code at worst.
Go to the top of the page
 
+Quote Post
Tweeble
post Aug 25 2005, 05:12 AM
Post #11


Target
*

Group: Members
Posts: 8
Joined: 24-August 05
Member No.: 7,607



I keep meaning to play online, but never seem to get round to joining a game, must do so sometime.

I thought I would hate SR4 (I hate changes, especially to my poor little magic characters) but I'm starting to think the changes aren't that disastrous afterall.

Might change my mind again after I've read the book though. :)
Go to the top of the page
 
+Quote Post
Gambitt
post Aug 26 2005, 09:15 AM
Post #12


Target
*

Group: Members
Posts: 79
Joined: 8-October 02
Member No.: 3,425



From the votes cast (57 at point of posting) it would seem that the tabletop players like SR4 more than the online/mail players, which kind of makes sense to me. Im reaching here, but its probably due to reduced large dice rolling/rerolling and the new decker rules that could eat up tabletime in SR3.
Go to the top of the page
 
+Quote Post
nezumi
post Aug 26 2005, 01:45 PM
Post #13


Incertum est quo loco te mors expectet;
*********

Group: Dumpshocked
Posts: 6,548
Joined: 24-October 03
From: DeeCee, U.S.
Member No.: 5,760



OR it could be that 53 people voted under the 'I play table top category', and only 8 voted in the 'I play online' category.

Unless we get a few more people voting in the online category, the information is fairly worthless as a comparison between the two.
Go to the top of the page
 
+Quote Post
Gambitt
post Aug 26 2005, 02:54 PM
Post #14


Target
*

Group: Members
Posts: 79
Joined: 8-October 02
Member No.: 3,425



Aye nezumi you are right, there isnt enough to compare. As i say i was reaching with that assumption, but as far as the poll has gone so far it does give a very rough idea that a difference of opinion on SR4 exists between the different communities that play.

(and i mean very rough/vague!!)
Go to the top of the page
 
+Quote Post
blakkie
post Aug 26 2005, 03:21 PM
Post #15


Dragon
********

Group: Members
Posts: 4,718
Joined: 14-September 02
Member No.: 3,263



QUOTE (Gambitt)
From the votes cast (57 at point of posting) it would seem that the tabletop players like SR4 more than the online/mail players, which kind of makes sense to me. Im reaching here, but its probably due to reduced large dice rolling/rerolling and the new decker rules that could eat up tabletime in SR3.

Or it could be the votes from a single group of online players that enjoy SR3 flavored Koolaid. ;)
Go to the top of the page
 
+Quote Post

Reply to this topicStart new topic

 

RSS Lo-Fi Version Time is now: 17th July 2025 - 10:31 PM

Topps, Inc has sole ownership of the names, logo, artwork, marks, photographs, sounds, audio, video and/or any proprietary material used in connection with the game Shadowrun. Topps, Inc has granted permission to the Dumpshock Forums to use such names, logos, artwork, marks and/or any proprietary materials for promotional and informational purposes on its website but does not endorse, and is not affiliated with the Dumpshock Forums in any official capacity whatsoever.