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

Closed Thread
 
Thread Tools
RPG Integration Hack - Old Support Thread Details »»
RPG Integration Hack - Old Support Thread
Version: , by MindTrix MindTrix is offline
Developer Last Online: Jul 2013 Show Printable Version Email this Page

Version: Unknown Rating:
Released: 08-17-2004 Last Update: Never Installs: 0
 
No support by the author.

Nice conversion there mate, lot of work has gone into it so well done and thanks for sharing it

Show Your Support

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

Comments
  #832  
Old 12-28-2004, 04:45 AM
Creed's Avatar
Creed Creed is offline
 
Join Date: May 2002
Location: The Matrix
Posts: 281
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If you were to show me what your navbar template looks like I may be able to help you. Just copy and paste its contents into a text file and attach it to an email @ cleeq@adelphia.net
  #833  
Old 12-28-2004, 04:54 AM
TLSNetwork TLSNetwork is offline
 
Join Date: Dec 2004
Posts: 16
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

First up well done fantastic system , We have just moved our site over from ipb to vb and i have to say i am very impressed at the extra functions and ease of use of vb , Here is a slight problem i am having with the rpg that i hope somebody can answer , The stats that show on the left hand side of each users post about their rpg status is pretty big and consumes alot of space , What i would like to do is reduce those stat bars a bit , See what i mean they are very big and blocky , Is there any way of reducing these down in size to like the ones that you see if you go through the nav bar and look at your stats ??? , Hope you understand what i mean i have included a picture so you can see what i am getting at.
Attached Files
File Type: (21.3 KB, 19 views)
  #834  
Old 12-28-2004, 04:59 AM
boydekort boydekort is offline
 
Join Date: Jun 2003
Location: geleen nl
Posts: 27
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

will do thanks please explain what you did fix though so I know

also same happens with ushop seems they use the same referer to calender.php all extensions do petz/arcade they all do and if I put them in like you said nothing shows.

mail send from depaxs@gmail.com

sorry I sended it in the plain mail :S
  #835  
Old 12-28-2004, 05:32 AM
TLSNetwork TLSNetwork is offline
 
Join Date: Dec 2004
Posts: 16
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

never mind on my question , Duh well don't i feel stupid , a little change from 9 to 4 makes a world of difference
  #836  
Old 12-28-2004, 05:47 AM
Creed's Avatar
Creed Creed is offline
 
Join Date: May 2002
Location: The Matrix
Posts: 281
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have replied in an email to you, as well if it works properly then I'll be happy to add the coding here as well.
  #837  
Old 12-28-2004, 06:21 AM
boydekort boydekort is offline
 
Join Date: Jun 2003
Location: geleen nl
Posts: 27
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thanks creed it's workin perfect ]
what I did wrong was
<-usercp options> <!-- NAVBAR POPUP MENUS -->

I put it in front of usercp options instead of inbetween

it works btw place it here
  #838  
Old 12-28-2004, 06:25 AM
Creed's Avatar
Creed Creed is offline
 
Join Date: May 2002
Location: The Matrix
Posts: 281
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Alrighty Glad it worked for you!

Code:
###################
# NAVBAR template #
###################


Find:
---------------------------------

<if condition="$show['member']">
<td class="vbmenu_control"><a href="usercp.php?$session[sessionurl]">$vbphrase[user_cp]</a></td>
		</if>


Below add:
---------------------------------

<if condition="$show['member']">
<td class="vbmenu_control" id="rpg"><a href="#rpg">RPG</a> <script type="text/javascript"> vbmenu_register("rpg"); </script></td>
</if> 


Find:
---------------------------------
<!-- / user cp tools menu --></if>

Below add:
---------------------------------

<if condition="$show['member']">
    <!-- RPG Menu -->
    <div class="vbmenu_popup" id="rpg_menu" style="display:none">
        <table cellpadding="4" cellspacing="1" border="0">
        
        	<tr><td class="thead">RPG</td></tr>        
	        <tr><td class="vbmenu_option"><a href="rpgcp.php">RPG Main</a></td></tr>
        	<tr><td class="vbmenu_option"><a href="battle.php">Battle Arena</a></td></tr>
	        <tr><td class="vbmenu_option"><a href="itemshop.php">Itemshop</a></td></tr>
	        <tr><td class="vbmenu_option"><a href="profile.php?do=updaterpg">Edit Your Character</a></td></tr>
		<tr><td class="vbmenu_option"><a href="heal.php">Healing Center</a></td></tr>
		<tr><td class="vbmenu_option"><a href="battle.php?action=showbattlestats">RPG Top 10</a></td></tr>
		<tr><td class="vbmenu_option"><a href="battle.php?action=showuserstats">Check Your Stats</a></td></tr>
		<tr><td class="vbmenu_option"><a href="clancp.php">Clan CP</a></td></tr>
		<tr><td class="vbmenu_option"><a href="lottery.php">Lottery</a></td></tr>

        </table>
    </div>
    <!-- / RPG Menu -->
</if>
  #839  
Old 12-28-2004, 06:53 AM
boydekort boydekort is offline
 
Join Date: Jun 2003
Location: geleen nl
Posts: 27
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Creed
Alrighty Glad it worked for you!

Code:
###################
# NAVBAR template #
###################


Find:
---------------------------------

<if condition="$show['member']">
<td class="vbmenu_control"><a href="usercp.php?$session[sessionurl]">$vbphrase[user_cp]</a></td>
		</if>


Below add:
---------------------------------

<if condition="$show['member']">
<td class="vbmenu_control" id="rpg"><a href="#rpg">RPG</a> <script type="text/javascript"> vbmenu_register("rpg"); </script></td>
</if> 


Find:
---------------------------------
<!-- / user cp tools menu --></if>

Below add:
---------------------------------

<if condition="$show['member']">
    <!-- RPG Menu -->
    <div class="vbmenu_popup" id="rpg_menu" style="display:none">
        <table cellpadding="4" cellspacing="1" border="0">
        
        	<tr><td class="thead">RPG</td></tr>        
	        <tr><td class="vbmenu_option"><a href="rpgcp.php">RPG Main</a></td></tr>
        	<tr><td class="vbmenu_option"><a href="battle.php">Battle Arena</a></td></tr>
	        <tr><td class="vbmenu_option"><a href="itemshop.php">Itemshop</a></td></tr>
	        <tr><td class="vbmenu_option"><a href="profile.php?do=updaterpg">Edit Your Character</a></td></tr>
		<tr><td class="vbmenu_option"><a href="heal.php">Healing Center</a></td></tr>
		<tr><td class="vbmenu_option"><a href="battle.php?action=showbattlestats">RPG Top 10</a></td></tr>
		<tr><td class="vbmenu_option"><a href="battle.php?action=showuserstats">Check Your Stats</a></td></tr>
		<tr><td class="vbmenu_option"><a href="clancp.php">Clan CP</a></td></tr>
		<tr><td class="vbmenu_option"><a href="lottery.php">Lottery</a></td></tr>

        </table>
    </div>
    <!-- / RPG Menu -->
</if>
also got the ushop fixed and the portal home thanks man I owe ya one.
  #840  
Old 12-31-2004, 10:20 PM
bozzy bozzy is offline
 
Join Date: Oct 2003
Posts: 81
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I seem to be missing something. I installed the hack and everything is working 100% fine, but how do I buy items? There are settings for the Item Shop in the AdminCP and they work just fine, but on the forums, there is no Item Shop. Where is the Item Shop installed?

Thanks
  #841  
Old 12-31-2004, 10:32 PM
bozzy bozzy is offline
 
Join Date: Oct 2003
Posts: 81
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Nevermind, I got it.
Closed Thread


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 08:43 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.10384 seconds
  • Memory Usage 2,337KB
  • Queries Executed 26 (?)
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
  • (2)bbcode_code
  • (1)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
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (1)postbit_attachment
  • (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
  • postbit_attachment
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete