The Crew
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Latest topics
» Hello World.
Roll bonuses EmptySun Apr 02, 2023 6:06 pm by DIABLO258

» God damn, 10 whole years.
Roll bonuses EmptySun Apr 02, 2023 6:02 pm by DIABLO258

» Citizen, Apply.
Roll bonuses EmptyFri Nov 19, 2021 1:52 am by DIABLO258

» These LONG years.
Roll bonuses EmptyFri Nov 19, 2021 12:44 am by DIABLO258

» You know what?
Roll bonuses EmptyTue Oct 20, 2020 3:39 am by Cergis

» I won't leave you
Roll bonuses EmptyThu Apr 30, 2020 5:03 pm by Lt.FallenAngel

» reminiscing of old times
Roll bonuses EmptyWed Mar 11, 2020 12:22 am by Gremnkai

» I wonder if
Roll bonuses EmptyMon Apr 04, 2016 9:58 pm by Gremnkai

» Good Memories.
Roll bonuses EmptySun Apr 03, 2016 2:04 pm by General Bravo

» can't actually reply to anything
Roll bonuses EmptySun Aug 30, 2015 6:46 pm by Moose_hater


Roll bonuses

+2
DIABLO258
Moose_hater
6 posters

Go down

Roll bonuses Empty Roll bonuses

Post  Moose_hater Sat May 04, 2013 6:58 pm

why does an 02 have a +25 and a DvL +13, and Stinger plus +16? It doesn't make sence, I get its focused on strength, but this is abusable. Attributes shouldn't matter with rolls. There should be custom roll pluses for different people.
Ex:
02- Plus 10
EpU- Augments- Plus 15
Dvl- Augments moar- Plus 20
Attributes shouldn't matter.
avatar
Moose_hater

Posts : 265
Join date : 2012-09-04
Location : Tennessee

Back to top Go down

Roll bonuses Empty Re: Roll bonuses

Post  DIABLO258 Sat May 04, 2013 7:33 pm

Attributes are for Citizens. I have yet to figure out how to seperate the roll command into two commands.

So just relaxe fo now.
DIABLO258
DIABLO258
Owner

Posts : 1014
Join date : 2012-07-21
Age : 28
Location : Minnesota

https://thecrew.forumotion.com

Back to top Go down

Roll bonuses Empty Re: Roll bonuses

Post  Moose_hater Sat May 04, 2013 8:49 pm

DIABLO258 wrote:Attributes are for Citizens. I have yet to figure out how to seperate the roll command into two commands.

So just relaxe fo now.
kthnx
avatar
Moose_hater

Posts : 265
Join date : 2012-09-04
Location : Tennessee

Back to top Go down

Roll bonuses Empty Re: Roll bonuses

Post  Jaquecz Sun May 05, 2013 1:14 am

Actually, with the new roll bonus plugin, do units keep their static roll gains? like OTA have a +30 and the 03-01 with a +10

Also, i think the roll bonuses that are shown after the /roll command is put in should be for the advantages that the character has.
Also, didn't you say the /roll gain bonus thing takes into account the weapons on the character too? If you just say that the roll gain bonus gained from attributes is for citizens, then how do you know what the roll bonus gain from weapons are.
Jaquecz
Jaquecz

Posts : 494
Join date : 2013-01-09
Age : 27
Location : CANADA

Back to top Go down

Roll bonuses Empty Re: Roll bonuses

Post  Precinct Helghast Sun May 05, 2013 7:12 am

Moose_hater wrote:why does an 02 have a +25 and a DvL +13, and Stinger plus +16? It doesn't make sence, I get its focused on strength, but this is abusable. Attributes shouldn't matter with rolls. There should be custom roll pluses for different people.
Ex:
02- Plus 10
EpU- Augments- Plus 15
Dvl- Augments moar- Plus 20
Attributes shouldn't matter.

That now works if your inshape. Running, eating and your attributes fall into play.
Precinct Helghast
Precinct Helghast
Obsidian Donator

Posts : 271
Join date : 2012-09-29
Location : Canada

Back to top Go down

Roll bonuses Empty Re: Roll bonuses

Post  Gremnkai Sun May 05, 2013 7:43 am

I personally think the amounts for addition should be changed anyways. 06-03 +5 02-01 +10 EpU-DvL +15 All the highcommand +20 (All of this not including augs)
Gremnkai
Gremnkai
Respected

Posts : 495
Join date : 2012-08-30
Age : 27
Location : U wunt sum fuq?

Back to top Go down

Roll bonuses Empty Re: Roll bonuses

Post  Silver Sun May 05, 2013 8:28 am

The reason the rolls are getting ridiculous is that we are using the plugin all wrong. Loads of rolling 100. Let me explain:

What you see is for example:

Name has rolled 87 out of 100.
Name has a gain of 10.

Now, what we do, is take the value 87 and add 10 to it. While actually, 87 already includes the roll gain! I read the plugin a while back when it was released (I'm on Cloudsixteen and stuff), and this is the code:

Code:
roll = base + gain

   -- Makes sure the roll doesn't go over 100
   if roll > 100 then
      roll = 100
   end
   -- Notifys the player of the roll and their gain.
   Clockwork.chatBox:AddInRadius(player, "roll", "has rolled "..roll.." out of 100.", player:GetPos(), Clockwork.config:Get("talk_radius"):Get());
   Clockwork.chatBox:AddInRadius(player, "roll", "has a gain of "..gain, player:GetPos(), Clockwork.config:Get("talk_radius"):Get());

The roll gain is included in the roll. So, in our case, you get twice the roll gain. So we should just use the roll value. That already includes the bonus.

Also, I think we should just separate the weapon part of the plugin. When you try to run or something your weapon shouldn't matter.

Also, 06's and 05's aren't included in the default plugin (I do not know if Diablo added this).

What would be the best solution in my eyes is separate the values. In this way we have a separate roll without bonus (useful for when you're rolling for something like blood group, I did this yesterday, and roll gain just messes it up because I can't roll beneath 16 or something) and a separate roll for your weapon.

I quickly forked the RollGain plugin, edited some values and separated the rolls. I haven't tested it since I got no access to Clockwork atm, but in case anyone wants to use it and it gives an error, just let me know.

sh_roll.lua edit by Silverdisc.
Silver
Silver
Technical Officer

Posts : 90
Join date : 2013-01-27
Age : 29
Location : Netherlands

Back to top Go down

Roll bonuses Empty Re: Roll bonuses

Post  Jaquecz Sun May 05, 2013 11:57 am

Silver wrote:The reason the rolls are getting ridiculous is that we are using the plugin all wrong. Loads of rolling 100. Let me explain:

What you see is for example:

Name has rolled 87 out of 100.
Name has a gain of 10.

Now, what we do, is take the value 87 and add 10 to it. While actually, 87 already includes the roll gain! I read the plugin a while back when it was released (I'm on Cloudsixteen and stuff), and this is the code:

Code:
roll = base + gain

   -- Makes sure the roll doesn't go over 100
   if roll > 100 then
      roll = 100
   end
   -- Notifys the player of the roll and their gain.
   Clockwork.chatBox:AddInRadius(player, "roll", "has rolled "..roll.." out of 100.", player:GetPos(), Clockwork.config:Get("talk_radius"):Get());
   Clockwork.chatBox:AddInRadius(player, "roll", "has a gain of "..gain, player:GetPos(), Clockwork.config:Get("talk_radius"):Get());

The roll gain is included in the roll. So, in our case, you get twice the roll gain. So we should just use the roll value. That already includes the bonus.

Also, I think we should just separate the weapon part of the plugin. When you try to run or something your weapon shouldn't matter.

Also, 06's and 05's aren't included in the default plugin (I do not know if Diablo added this).

What would be the best solution in my eyes is separate the values. In this way we have a separate roll without bonus (useful for when you're rolling for something like blood group, I did this yesterday, and roll gain just messes it up because I can't roll beneath 16 or something) and a separate roll for your weapon.

I quickly forked the RollGain plugin, edited some values and separated the rolls. I haven't tested it since I got no access to Clockwork atm, but in case anyone wants to use it and it gives an error, just let me know.

sh_roll.lua edit by Silverdisc.

I have an idea
Basically this:i recommend removing the weapon bonus gain from the regular /roll and out it into a diffrent command. Two roll commands /roll and /wroll
/wroll is just roll except it takes into account the weapons you have equipped.
the regular /roll command does not take the weapons you have equipped into account
maybe a /oroll command that doesn't use the roll bonus plugin for those times when things are REALLY based on luck.
Jaquecz
Jaquecz

Posts : 494
Join date : 2013-01-09
Age : 27
Location : CANADA

Back to top Go down

Roll bonuses Empty Re: Roll bonuses

Post  Silver Sun May 05, 2013 12:44 pm

Meleepayne wrote:
I have an idea
Basically this:i recommend removing the weapon bonus gain from the regular /roll and out it into a diffrent command. Two roll commands /roll and /wroll
/wroll is just roll except it takes into account the weapons you have equipped.
the regular /roll command does not take the weapons you have equipped into account
maybe a /oroll command that doesn't use the roll bonus plugin for those times when things are REALLY based on luck.

That's basically what my edit is supposed to do. It outputs this when you /roll:

Player has rolled *** out of 100.
Player has a gain of ***.
Player has a weapon gain of ***.


The "normal roll" doesn't include any gains.

I could also make it so that the attributes only give a gain for civilians. I will be getting a copy of Clockwork pretty soon so I can finally test some stuff I made and start developing plugins for the C16 forums.
Silver
Silver
Technical Officer

Posts : 90
Join date : 2013-01-27
Age : 29
Location : Netherlands

Back to top Go down

Roll bonuses Empty Re: Roll bonuses

Post  Sponsored content


Sponsored content


Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum