vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Beta Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=34)
-   -   Rap Battle System -=RBS=- (https://vborg.vbsupport.ru/showthread.php?t=68161)

Romeos Tune 10-31-2004 04:17 PM

It appears dead unfortunately..... I'd pay too for a nice working version......

Liquid1ce 11-03-2004 03:55 PM

Im currantly working on a full system myself and its comming on well
Though im looking for 2 or 3 people to join me in helping with this

if you can help or your intrested in the system pm me with your contact details & ill email & keep you updated on a final realise date. But this version wont be free

Pro 11-08-2004 11:42 PM

i just started working on this again... i was having the same problem with the LOSSES being recorded... but i THINK i may have fixed it... i'll let you guys know in a few!

Pro 11-08-2004 11:48 PM

Quote:

Originally Posted by James T Brock
(1) Needs KO's along with wins and loses.

(2) A better stats system so that it counts top 10 users, who has the most KO's, most loses, best win percentage.

(3) I've seen the script in action and have it downloaded, but have been reluctant to install it on my forums until the original author (or someone else) is willing to support it. Does the current script allow the amount of votes to be set to any number we want, or does it have to stay at five? I want to be able to set it at twenty votes.

I don't think any of these would be very difficult... but then again - i agree with the support - the hack is kind of premature and has a ton of bugs now... i'm kind of reluctant to fix everything without the proper support behind it.

If i do choose to get EVERY detail together - i'll probably have to see if MindTrix is still interested in providing support - or i'll re-release a new version myself - take the BS from other members - but atleast you guys get the hack you wanted!

Anyways, i'm going to give this a few days. LiquidIce - check your PM's!

Pro 11-10-2004 04:52 AM

chick check...

still workin on this... got some bugs out - working on the KOS part for now - start working on a few other things on Thursday...

ill contact MindTrix and see if he wants to re-release it as a new version or just put add-ons or what...

Trix - PM me on my site when you see this!

James T Brock 11-10-2004 11:01 AM

Great! Keep us updated on your progress.

dlouly47 11-10-2004 06:00 PM

Awesome.. Dont got it yet but will wait for the new version when and if it comes out!! Appreciate all you guys do.. everyone of you guys are genius.. makes me want to go to school for this!

Pro 11-11-2004 04:45 AM

still workin... :)

Preech 11-15-2004 10:36 AM

Alot of the code people need can be found in the RPG mods. Just a little time changing information to fit a rap style system is all it takes. I am currently stationed in Korea. I have been working real slow on this. As this will be my first mod created if successfully. But my attempts right now, is working on setting this up to work almost automatically from every aspect. I would like to thank people for giving me more ideas to work with.

Hades-1 11-19-2004 06:51 PM

1 thing this sytem needs that one mentions is i way so that when you choose someone to battle it send them an email and says they have been chalenged.

Hades-1 11-19-2004 07:00 PM

Quote:

Originally Posted by KingPooky
First of all, I want to thank you for creating this hack. It's cool as hell, and best of all, easy to install.

For those of you who are having problems with normal, everyday polls being closed whenever someone votes, I believe I have found the solution.

Open POLL.PHP and find
PHP Code:

        //RBS
        
$battlesys $DB_site->query_first("SELECT * FROM " TABLE_PREFIX "battlesys_battles WHERE pollid = '".$pollinfo['pollid']."'");
        
$votestowin $battlesys['votestowin'];
        
$splitoptions explode("|||"$pollinfo['options']);
        
$maxvotes 0;
        
$leastvotes 0;
        foreach (
$splitvotes as $number => $vote)
        {
            global 
$maxvotes;
            global 
$leastvotes;
            global 
$splitoptions;
            if ( 
$vote $maxvotes ) {
                
$maxvotes $vote;
                
$winner $splitoptions[$number];
                global 
$winner;
            }
            if ( 
$vote $leastvotes or $vote == ) {
                
$leastvotes $vote;
                
$loser $splitoptions[$number];
                global 
$loser;
            }
        }
        if ( 
$maxvotes >= $votestowin )
        {
            
$DB_site->query_first("UPDATE " TABLE_PREFIX "poll SET active = '0' WHERE pollid = '".$pollinfo['pollid']."'"); //close poll
            //$winnerinfo = $DB_site->query("SELECT * FROM " . TABLE_PREFIX . "user WHERE username = '".$winner."'");
            
$DB_site->query("UPDATE user SET bs_wins = bs_wins + 1 WHERE username = '".$winner."'");
            
$DB_site->query("UPDATE user SET bs_loses = bs_loses + 1 WHERE username = '".$loser."'");
            
        }
        
//RBS 

And replace with
PHP Code:

        //RBS
        
$battlesys $DB_site->query_first("SELECT * FROM " TABLE_PREFIX "battlesys_battles WHERE pollid = '".$pollinfo['pollid']."'");
        if(
$battlesys)
        {
            
$votestowin $battlesys['votestowin'];
            
$splitoptions explode("|||"$pollinfo['options']);
            
$maxvotes 0;
            
$leastvotes 0;
            foreach (
$splitvotes as $number => $vote)
            {
                global 
$maxvotes;
                global 
$leastvotes;
                global 
$splitoptions;
                if ( 
$vote $maxvotes ) {
                    
$maxvotes $vote;
                    
$winner $splitoptions[$number];
                    global 
$winner;
                }
                if ( 
$vote $leastvotes or $vote == ) {
                    
$leastvotes $vote;
                    
$loser $splitoptions[$number];
                    global 
$loser;
                }
            }
            if ( 
$maxvotes >= $votestowin )
            {
                
$DB_site->query_first("UPDATE " TABLE_PREFIX "poll SET active = '0' WHERE pollid = '".$pollinfo['pollid']."'"); //close poll
                //$winnerinfo = $DB_site->query("SELECT * FROM " . TABLE_PREFIX . "user WHERE username = '".$winner."'");
                
$DB_site->query("UPDATE user SET bs_wins = bs_wins + 1 WHERE username = '".$winner."'");
                
$DB_site->query("UPDATE user SET bs_loses = bs_loses + 1 WHERE username = '".$loser."'");
                
            }
        }    
        
//RBS 


This should fix that problem. Enjoy!


nobody said thank you for posting this so let me be the first

thank you!

Pro 11-24-2004 10:10 PM

started workin on this again...

i got the LOSSES to come up finally - now im starting on the KO's part... i think it might be easy... we'll see... im not a pro but i know enough to get stuff working!

:)

James T. Brock - if you see this hit me up on aim: thajoker714

Pro 11-24-2004 10:12 PM

P.S.

I'll post updates soon... just give me some time to test them... a few days or so... i should have the LOSS and K.O. updates for you all - then if i get to start on a new CHALLENGE system - i'll have MindTrix post the new updates in a zip file...

Pro 11-24-2004 10:34 PM

hmmm... while testing this on my site the person i "battled" (just for test purposes) ended up recieving 1 win out of 6 battles - although now i have 6 losses LOL... so i gotta look into this again... something's not right.

i've started looking into the Challenge system as well...

deb0 11-29-2004 02:37 AM

Has anyone tried to use this for other competitions like graphics, poetry, etc...?

Jmonto 11-30-2004 02:40 AM

is there a post limit that a user must have before being able to vote? also does it show who voted?

mopfool 12-01-2004 04:24 PM

I need some help :)

1) When trying to add a line that contains an apostrophe (') as a favorite (when posting a reply to a battle), I get a database error. Otherwise, it works fine.

2) This is a pretty general question. You can't select your favorite line in the quick reply box, so is there any way to turn off the quick reply box for just the rap battle forum and leave it on for all others?

Thanks,
mopfool=]

N1Co 12-05-2004 01:33 AM

Slashes don't get added on data submitted to the database (quotes (') don't get escaped), which is quite imortant :| !

dndog 12-05-2004 03:22 PM

I notice on the Rap Battle System, you added extra blanks to the postbit:

https://vborg.vbsupport.ru/attachmen...chmentid=20108

How could I just incorporate a few fields into my regular postbit?

That would be great!

-dndog

MajorFm.com 12-28-2004 01:42 AM

Just what i was looking for!! thanks man!!

???`S?LV?R???` 12-28-2004 02:09 AM

seeing how some fixes have been posted, what bugs are still left? (just curious before i install, so i can know what to expect)

Toky0 12-28-2004 05:51 AM

Could this possibly be used for GFX (graphic) Battles as well?

Matt_270581 12-28-2004 06:48 AM

Someone really needs to Debug this and Re-upload ;)

???`S?LV?R???` 12-28-2004 05:32 PM

Quote:

Originally Posted by Matt_270581
Someone really needs to Debug this and Re-upload ;)

lol my thoughts exactly

Toky0 12-29-2004 08:27 AM

Quote:

Originally Posted by ???`S?LV?R???`
lol my thoughts exactly

lol Why what's wrong with it? I didn't install it yet.

???`S?LV?R???` 12-29-2004 04:38 PM

well from what I heard there's still alot of bugs in it, although some fixes have been posted i'm curious how many bugs are left

MajorFm.com 01-03-2005 12:20 PM

ok i have installed this but want to intergrate with uShop, so the winner of the battle gets points from the looser automatically...

is this possible?

MajorFm.com 01-03-2005 12:23 PM

also if the looser doesnt have enough points, can they go into a minus which costs them interest just as the bank would give them, its the reverse... just as a loan

MajorFm.com 01-04-2005 09:17 PM

This has messed up my forum, all polls are closing by itself, all previous polls are closed, any new polls are closing... please help asap!

MajorFm.com 01-06-2005 12:52 PM

Any poll on my forum, whenever someone votes, the poll autocloses.

If your gonna make a hack that messes up the forum, atleast please try to help and fix it!

MindTrix 01-06-2005 03:59 PM

Quote:

Originally Posted by MajorFm.com
Any poll on my forum, whenever someone votes, the poll autocloses.

If your gonna make a hack that messes up the forum, atleast please try to help and fix it!

Bit of an over reaction no? If you would have looked about one or two pages back you would have seen the fix in this post

https://vborg.vbsupport.ru/showpost....&postcount=109

I know this hack has some bugs, but their minor bugs that i dont have time to fix as i have my real life to take care of at the moment

MajorFm.com 01-06-2005 07:29 PM

sorry man, when you got over 100 pm's of pissed off people... u start goin mad!

Thanks for the link

MajorFm.com 01-06-2005 08:04 PM

If anyone else had this problem and need to open all polls on their forum again...

I couldn't find a option in the admincp so i just went to

http://www.majorfm.com/forum/poll.ph...ledit&pollid=1
http://www.majorfm.com/forum/poll.ph...ledit&pollid=2

etc etc... changing the last number each time to go to the next poll...

Jmonto 01-13-2005 02:51 AM

is this thing safe to install or is it gonna screw up my forum?

what are the remaining bugs?

Wordplay 01-13-2005 10:54 AM

ever since i installed this hack whenever a poll is startet for some reason in automatically closes for good everytime somebody votes. how come? can i change this somehow?

MajorFm.com 01-13-2005 11:17 AM

The poll problem has been solved, i had the same problem, but you gotta do the fix, for some reason, the hack maker hasnt updated the original hack with the fix...

Please check: https://vborg.vbsupport.ru/show...9&postcount=109

Also this hack is nice but you gotta install the fixes for it to work properly..

I think its a ok hack but there are loads more features it could include!

James T Brock 01-14-2005 12:43 PM

Quote:

Originally Posted by MindTrix
Bit of an over reaction no?

He is NOT over-reacting. You have screwed up many peoples forum. I can understand there being some bugs that you don't know how to correct, but since someone posted a fix the least you could do is upgrade the original post in this thread to include the poll fix. Otherwise it looks like you just don't care.

???`S?LV?R???` 01-14-2005 04:27 PM

Quote:

Originally Posted by James T Brock
He is NOT over-reacting. You have screwed up many peoples forum. I can understand there being some bugs that you don't know how to correct, but since someone posted a fix the least you could do is upgrade the original post in this thread to include the poll fix. Otherwise it looks like you just don't care.

It looks like this project got abandoned, anyways I can see why your mad

???`S?LV?R???` 01-14-2005 04:29 PM

Anyone mind mind sharing what the remaining bugs are, cause I know me and a few other people are still curious before we install this hack, oh yeah and one more question, is anyone having any problems with this working on 3.0.5?

MajorFm.com 01-14-2005 09:17 PM

Finally seems to be working with the fix... but as i said... i don't think it was worth it in the end... it could be made alot better with more features etc... but i try not to mock people that make hacks as its a free contribution...

I agree the original hack should be fixed so all known bugs are removed so atleast the new people don't have to go through the same problems i and many others did...


All times are GMT. The time now is 12:01 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01579 seconds
  • Memory Usage 1,859KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_php_printable
  • (7)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete