Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > Premium Archives > ibProArcade Archive
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
vBulletin Button Sets: Details »»
vBulletin Button Sets:
Version: , by bayareamommas bayareamommas is offline
Developer Last Online: Jul 2010 Show Printable Version Email this Page

Version: Unknown Rating:
Released: 03-30-2008 Last Update: Never Installs: 0
 
No support by the author.

how do I change these? to some new nice ones...

Show Your Support

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

Comments
  #2  
Old 03-30-2008, 10:45 PM
Mark.B Mark.B is offline
Senior Member
 
Join Date: Feb 2004
Posts: 1,354
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Probably not by posting in the arcade forum....
Reply With Quote
  #3  
Old 03-31-2008, 07:28 AM
iBaker's Avatar
iBaker iBaker is offline
 
Join Date: Oct 2006
Location: Melbourne, Australia
Posts: 152
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I wanted to know this as well but I didn't get a response - see https://vborg.vbsupport.ru/showthread.php?t=172777
Donated $50 as well and didn't get a response from the developer about the donation either
Reply With Quote
  #4  
Old 03-31-2008, 10:09 PM
Mark.B Mark.B is offline
Senior Member
 
Join Date: Feb 2004
Posts: 1,354
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You have my sympathies, however, again, you aren't likely to get a response in the arcade forum.
Reply With Quote
  #5  
Old 03-31-2008, 10:55 PM
bayareamommas bayareamommas is offline
 
Join Date: Mar 2008
Posts: 33
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thanks for some direction
Reply With Quote
  #6  
Old 04-06-2008, 12:15 PM
MrZeropage's Avatar
MrZeropage MrZeropage is offline
 
Join Date: Nov 2003
Location: Munich, Germany
Posts: 3,012
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If you are talking to me, I did not get any donation from you - or you used some other domain I don't know it is yours.

and: what buttons you mean and want ? I still guess this is not related to ibProArcade ?
Reply With Quote
  #7  
Old 04-06-2008, 07:39 PM
iBaker's Avatar
iBaker iBaker is offline
 
Join Date: Oct 2006
Location: Melbourne, Australia
Posts: 152
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by MrZeropage View Post
If you are talking to me, I did not get any donation from you - or you used some other domain I don't know it is yours.

and: what buttons you mean and want ? I still guess this is not related to ibProArcade ?
Firstly it was 50USD through PayPal on 10th March to MrZeroPage but it may have come up as being from Jackaroo Solutions.

The buttons that I am referring to is I want to replace the nav bar links:
Arcade ? Tournaments ? Your Settings ? Your Favorites ? Your Rankings ? Leaderboard ? Arcade ModCP
with buttons but I don't know how to incorporate the img into your code for each one

In my post I said I wanted to insert:
HTML Code:
<img src="$stylevar[imgdir_button]/arcade.gif" width="109px">
in the code for the nav bar found at line 1041 of the mod_arcade.php file
Now it is fairly simple to see that it is your mod by the information that I gave - even your file name "mod_arcade.php" and the line number of your navbar in that file

I have always tried to do the right thing by donating money to developers here in way of support for the time being spend to help others but I have been getting bitten so much of late that I link I am going to have to stop supporting developers here as I can't even ask a simple question - sorry but with all due respect
Reply With Quote
  #8  
Old 05-04-2008, 07:11 PM
MrZeropage's Avatar
MrZeropage MrZeropage is offline
 
Join Date: Nov 2003
Location: Munich, Germany
Posts: 3,012
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

sorry for very late answer, I just missed that thread


I now see you want to replace the Arcade-Navbar and its text with icons.
No problem at all, you already found the right place (/arcadE/modules/mod_Arcade.php)

search for the code below
Code:
// Arcade NavBar
there you will find all six possible links.

Always just repalce the following variables with their respective icons:

$ibforums->lang['tourney_navbar']
$ibforums->lang['your_settings']
$ibforums->lang['your_favs']
$ibforums->lang['your_report']
$ibforums->lang['leaderboard']
$ibforums->lang['arcade_cp_link']

example:
Code:
$the_links .= "&nbsp;&nbsp;&middot;&nbsp;&nbsp;<a href='".$ibforums->base_url."do=viewtournaments'>".$ibforums->lang['tourney_navbar']."</a>";
could be replaced with
Code:
$the_links .= "&nbsp;&nbsp;&middot;&nbsp;&nbsp;<a href='".$ibforums->base_url."do=viewtournaments'><img src='$stylevar[imgdir_button]/arcade.gif' width='109px'></a>";
it may be that you need to extend the GLOBAL variables to $stylevar
Code:
    function top_links($html)
    {
     global $ibforums, $vbulletin, $vboptions, $DB;



Sorry for late answer, but donations and especially the branding-free you bought is not any reference for some "Premium support" or something - I am spending my free time on supporting this product, and THANKS for any donation, yes, but please also understand this is a private project.

and YES, to motivate you to keep donating and supporting coders, I now pulled your thread ahead and worked on a solution, although this is not a bug or problem but some personal styling you wish to do
Reply With Quote
  #9  
Old 05-07-2008, 03:52 AM
iBaker's Avatar
iBaker iBaker is offline
 
Join Date: Oct 2006
Location: Melbourne, Australia
Posts: 152
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by MrZeropage View Post
it may be that you need to extend the GLOBAL variables to $stylevar
Code:
    function top_links($html)
    {
     global $ibforums, $vbulletin, $vboptions, $DB;
Thanks Zero but can you explain further what you mean by this - thanks!
Reply With Quote
  #10  
Old 05-07-2008, 05:05 PM
MrZeropage's Avatar
MrZeropage MrZeropage is offline
 
Join Date: Nov 2003
Location: Munich, Germany
Posts: 3,012
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

replace
Code:
global $ibforums, $vbulletin, $vboptions, $DB;
with
Code:
global $ibforums, $vbulletin, $vboptions, $DB, $stylevar;
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 06:29 AM.


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.04441 seconds
  • Memory Usage 2,298KB
  • 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
  • (7)bbcode_code
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (9)postbit
  • (10)postbit_onlinestatus
  • (10)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_postinfo_query
  • fetch_postinfo
  • 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
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete