Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.0 > vBulletin 3.0 Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Dice Roll for vB3 Details »»
Dice Roll for vB3
Version: 1.00, by Kentaurus Kentaurus is offline
Developer Last Online: Jul 2014 Show Printable Version Email this Page

Version: 3.0.0 Rating:
Released: 02-28-2004 Last Update: Never Installs: 21
 
No support by the author.

Tested in 3.0.7

Update:
The hack has been updated with new instructions, to allow more than one roll per post. If you are updating Please undo the file edits from the previous version before applying the new one. If you are installing this for the first time you're ok.


This hack is most useful to roleplaying communities, but you can also
have fun with it in any forum. It implements a new code, [dice] with which
you can do a dice roll. You can roll as much as 3 dices of 30 faces and as
less as 1 dice of 2 faces.

Once you roll the dice it is stored in the post so you cannot roll again even
if you edit the post or whatever.

Please keep in mind the [img] tag should be disabled in the forum where the dice tag is going to be used. It is not mandatory and the hack will work even with the [img] tag enabled but to prevent cheating I would recommend it.

How to use it:

[dice={dices}]{faces}[/dice]

Example:

[dice=2]25[/dice]
This will roll two dices of 25 faces each one
[dice=1]6[/dice]
This will roll one dice of 6 faces

I am attaching a zip with some sample images.. they are not the best ones but they are dices and show the numbers. If someone could make a new set of dices "prettier" than the ones I got I would be grateful


Info for hackers:
You may modify, improve, upgrade, redistribute this hack, include it
in another hack or yours or translate it provided you do it free of
charge and you distribute it in www.vbulletin.org at least, there is no
need to pm me asking for permission
Some portions of the code are (c) Jelsoft Enterprises Ltd.

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #12  
Old 03-05-2004, 08:30 PM
Holidazed's Avatar
Holidazed Holidazed is offline
 
Join Date: May 2002
Location: Van Nuys, CA
Posts: 713
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Has not this hack already been done by Madacc at https://vborg.vbsupport.ru/showthrea...highlight=dice for vb2.xx?

I am not saying this is a ripoff of that code. I am just saying that if this hack worked more like that hack, it would be very cool.

Instead of images, have it just do it in text. Maybe if we could ember the roll dice command inside of an existing post, that would be awesome.
Reply With Quote
  #13  
Old 03-06-2004, 08:49 PM
Kentaurus's Avatar
Kentaurus Kentaurus is offline
 
Join Date: Dec 2001
Posts: 332
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by bitg
Has not this hack already been done by Madacc at https://vborg.vbsupport.ru/showthrea...highlight=dice for vb2.xx?

I am not saying this is a ripoff of that code. I am just saying that if this hack worked more like that hack, it would be very cool.

Instead of images, have it just do it in text. Maybe if we could ember the roll dice command inside of an existing post, that would be awesome.
I searched for this hack because I needed it in my forum, I wasn't able to find it so I started to code it myself. When I release a hack I don't look into other people vb2 code, that way I keep my hack 100% original.

I have no use for only text, I want the dice to be shown as an image, also I like my syntax to throw the dice so I will stick with it I don't know if it is the best one to use but it sounded logical when I designed it.
Reply With Quote
  #14  
Old 03-06-2004, 08:52 PM
Kentaurus's Avatar
Kentaurus Kentaurus is offline
 
Join Date: Dec 2001
Posts: 332
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Morrus
What edits would you need to make to increase the number of dice?
I am sorry, i should had make this hack more friendly. If more people use it I would upgrade it to be more friendly to customize. Right now to increase the number of dice

look for
Code:
$dice = eregi_replace(".*\[dice=([123])\]([0-9]?[0-9])\[\/dice\].*","\\1 \\2",$post['message']);
Add numbers depending on the number of dice you allow. Ej, for adding support for 4, 5 and 6 dices:
Code:
$dice = eregi_replace(".*\[dice=([123456])\]([0-9]?[0-9])\[\/dice\].*","\\1 \\2",$post['message']);
also look for

Code:
$post['message'] = preg_replace("/\[dice=[123]\][0-9]?[0-9]\[\/dice\]/i","[dice]",$post['message']);
In a similar way change it to:

Code:
$post['message'] = preg_replace("/\[dice=[123456]\][0-9]?[0-9]\[\/dice\]/i","[dice]",$post['message']);
Reply With Quote
  #15  
Old 03-06-2004, 08:55 PM
Kentaurus's Avatar
Kentaurus Kentaurus is offline
 
Join Date: Dec 2001
Posts: 332
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Hoffi
How are they stored in the Post? I searched this if it is impossible to chnage the Value. (OK, directly in the Database only!)
When a user does a dice roll the result of the roll is generated and stored in the post. Then the post of the user is edited only to contain [dice]

Then no matters if the user edits the post they can no longer change the dice roll, in fact, they only see a [dice]. The results have been already been stored with the post in the database. The only think they could do is to "delete" the dice roll.
Reply With Quote
  #16  
Old 03-10-2004, 04:46 AM
Hoffi's Avatar
Hoffi Hoffi is offline
 
Join Date: Nov 2001
Location: Germany
Posts: 342
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Kentaurus
When a user does a dice roll the result of the roll is generated and stored in the post. Then the post of the user is edited only to contain [dice]

Then no matters if the user edits the post they can no longer change the dice roll, in fact, they only see a [dice]. The results have been already been stored with the post in the database. The only think they could do is to "delete" the dice roll.
Works great. What should i change to roll 10 and 20 sided Dices. And maybe 12 sided are also needed.
Great would be a option where I can put in the posiible sidenumbers comma seperated.
Reply With Quote
  #17  
Old 03-10-2004, 04:54 PM
Hoffi's Avatar
Hoffi Hoffi is offline
 
Join Date: Nov 2001
Location: Germany
Posts: 342
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hey, there are some undocumentated features in the Code.

I modified my postbit_dice that it shows which dices were rolled.

HTML Code:
<fieldset>
<legend><strong>$dicesno W$dicesfaces</strong> mit $dicepoints Augen</legend>
$dicedata
</fieldset>
Thats for me very interesting and it is good so!
Reply With Quote
  #18  
Old 03-25-2004, 04:14 PM
mudpyr8's Avatar
mudpyr8 mudpyr8 is offline
 
Join Date: Mar 2004
Posts: 16
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'll take a look at this. I have a custom dice roller I wrote for phpbb. It handled Hero dice (STUN/BODY), Deadlands, Open Ending, and others. It worked great in phpbb, but I am new to vB so I just have to figure out where to move the functions and what not.

It doesn't store the rolls in the DB, but that hasn't been an issue on our board so I'm more looking for the functionality. If I get some time, I will try to convert it.

On the DB storage: I don't think that will work unless you tie the message ID to the store, and even then someone could create a new message anyway. If you had the [roll] code generate a result and store it in the DB, referencing by some kind of record ID, the roller could just delete the record ID and reroll anyway.

I think the bottom line is to either a) disallow editing at the forum level or b) make it known that any edited post with a roll will be considered a failed roll/minimum roll (forcing a reroll just means the people who roll crappy will edit their post so they will *have* to reroll).

a) is the easiest solution.
Reply With Quote
  #19  
Old 03-26-2004, 06:30 AM
Hoffi's Avatar
Hoffi Hoffi is offline
 
Join Date: Nov 2001
Location: Germany
Posts: 342
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It works perfectly how it stores the dice-rolls. Nothing can changed later. But you even can edit your Post.
The Roll ist stored in an extra Database-field of each Message.
Reply With Quote
  #20  
Old 03-26-2004, 02:01 PM
mudpyr8's Avatar
mudpyr8 mudpyr8 is offline
 
Join Date: Mar 2004
Posts: 16
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well, if I get a bad roll why not just delete the whole message and then roll again in a new message?

What about multiple rolls in a single message?
Reply With Quote
  #21  
Old 03-27-2004, 08:44 AM
Hoffi's Avatar
Hoffi Hoffi is offline
 
Join Date: Nov 2001
Location: Germany
Posts: 342
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If you can delete your Post, you can do it. But I idsallow Postdeleting.

Only one Roll per Post is possible.
Reply With Quote
Reply


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

Forum Jump


All times are GMT. The time now is 09:03 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.08780 seconds
  • Memory Usage 2,317KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (4)bbcode_code
  • (1)bbcode_html
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete