Quote:
Originally Posted by analog-x
Ok after days of looking around I finally found where I can challenge a person but it was in a place I wouldnt have thought unless I tried everything.
So.....If a person is a champion in a game a gold cup appears next to their name. So first you have to find a person who is a champion and than find a one of their posts in the forum, than you click on the golden cup and than the option of the challenge appears.
Personaly I would have liked to be able to challenge the person right from within the Arcade Room.
So is this the only way you can challenge a person? Like I said after days of searching that is the only place I could find the challenge option.
Quote:
Originally Posted by Tralala
They don't have to be a champion. If it's set up properly, you can challenge anyone (so long as they have turned on challenges in their UserCP.) Click their name, the challenge option is in the menu.
Works that way on my forum at least...
|
|
I've actually modded my arcade installation so that it displays a joystick in the same spot where champions have their gold cup displayed for non-champion users for this very reason (I found the challenge feature difficult to find). It's simple to do:
- Upload the attached image to your Arcade images folder.
- Find in your postbit or postbit_legacy template:
Code:
<a class="bigusername" href="member.php?$session[sessionurl]u=$post[userid]"><img src="$vboptions[arcadeimages]/trophy.gif" align="absmiddle" alt="$vbphrase[arcade_champion]" border="0" /></a>
Add the following immediately afterwards (in front of the closing if tag):
Code:
<else />
<if condition="($post['arcadeoptions'] & 1) AND $post['userid']!=$bbuserinfo['userid']">
<a class="bigusername" href="member.php?$session[sessionurl]u=$post[userid]"><img src="$vboptions[arcadeimages]/challenge.gif" align="absmiddle" alt="<phrase 1="$post[username]">$vbphrase[challenge_x_in_the_arcade]</phrase>" border="0" /></a>
</if>
Done