The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Comments |
#62
|
|||
|
|||
First, thanks for you work. I always appreciate anyone putting their valuable time into hacks.
I am interested in this, but for Image/PhotoShop Battles rather than rap/text. There are a few things that are holding me back from an install though. Things I think would make this better: 1. Ability for group only to start battles, and hence the first person in the "first vs. second" also be editable and not always who is creating the battle. I was thinking something like having "referees" (basically mod group with battle admin powers) to set up battles and finalize. I realize that forum permissions could handle this with "can post new threads" but I don't think a 3rd person can set up a battle between 2 others. 2. Having a set amount of votes to win, I just don't think that is the best way to handle it and I believe this is the biggest shortcoming. It needs to have the ability to accept and tally votes until a mod/admin/ref closes the poll/battle, then the winner be determined. 3. Some way (maybe a pop-up memberlist) to make sure you are putting someone's correct username or maybe the option to use ID's instead? On a gaming ladder that I own, our webmaster has it so users can login with either name or ID so I am sure it could be done. What happens if you set up a battle and use a non-existent username? When I tried, it let me with no errors. Thanks again for the hack and I will follow diligently to see development. |
#63
|
||||
|
||||
Thank you for letting me know about battling someone with no username etc, will get onto that.
Umm as for the set amount of votes to win. As this is aimed at rap board, 99% of the time this is how battles are set out, a set amount of votes are determined and then the battle commences. The winner beeing the person to get the votes etc. Erm that first thing you suggested sounded big and confusing to me Nice idea though. The memberlist thing, yeah i see what you mean. Will have to find something i guess. Thank you for the comments/suggestions |
#64
|
||||
|
||||
I have added the "Newest 3 Battles" to the forum home. Thanks to some coding i found around here. (no codes was stolen, i just got the "while" idea from another hack!)...Its up to Mindtrix if i can release the addon..
|
#65
|
||||
|
||||
Quote:
|
#66
|
|||
|
|||
do they have this for vb2?
|
#67
|
||||
|
||||
Some people have rap battle hacks for vB2 for sale, but none were ever released for free like this one
|
#68
|
||||
|
||||
Is there a way to change so it says Battle: not poll for each battle
|
#69
|
|||
|
|||
Addon's I suggest (which we're already workin on at my forum):
1) KO Voting... this is pretty simple you just query all votes on one battle, and sort them by vote date... assign each a floating value... then the set amount for a KO (usually 3) would be: if vote 2 == vote 1 and vote 3 == vote 1 (if KO = 4 then it'd be if vote 2 == vote 1 and vote 3 == vote 1 and vote 4 == vote 1... etc)... and then put it into the user's database as a win and KO and lock the poll another addon... polls always have cheaters (there's ways around IP Addresses to vote more than once), so to keep some cheaters out: 2) Cannot vote on polls (in battle forum) if less than 'x' amount of days registered or has less than 'x' amount of posts... again another easy hack those are just two of the small hacks we're creating at STR Forums... just some idea's that others might want. EDIT: also MindTrix what I suggest you do to change the coding is make it that the user creating the battle has to put in their opponent's forum ID number, that way there will be no confussion or mistakes when assigning win/loss values. |
#70
|
||||
|
||||
Look for:
Code:
// get permissions to view forumhome if (!($permissions['forumpermissions'] & CANVIEW)) { print_no_permission(); } Code:
// 3 Newest Battles $logik = $DB_site->query("SELECT replycount,title,threadid,lastpost,postusername,lastposter,views FROM thread WHERE forumid='X' ORDER BY lastpost DESC LIMIT 3"); while ($logiktop = mysql_fetch_array($logik)): ++$logiktopnbsp; $logikthread .= "<a href=showthread.php?s=$session[sessionhash]&threadid=$logiktop[threadid]>$logiktop[title]</a> <a href=showthread.php?s=$session[sessionhash]&goto=newpost&threadid=$logiktop[threadid]&goto=lastpost><font size=1><b>[View Unread]</b></font></a><br>"; endwhile; And then in your ForumHome template look for: Code:
$navbar Code:
<br> <if condition="$bbuserinfo['userid']"> <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> <tr> <td class="thead" width="100%" valign="top"> <normalfont><b>Newest 3 Battles</b></normalfont></td> </tr> <tr><td> $logikthread</td> </tr> </table> </if> <br> |
#71
|
||||
|
||||
@logik
what files to edit? newthread? |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|