Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > Premium Archives > RPG Integration Hack

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
  #442  
Old 09-19-2004, 09:46 AM
rinkrat's Avatar
rinkrat rinkrat is offline
 
Join Date: Jan 2002
Location: Long Beach
Posts: 530
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

AARGH!!! It was going beautifully just like last night then, all the sudden

Invalid SQL: select count(*) as new_posts from post where dateline > '1095576023'
mysql error: Can't open file: 'post.MYI'. (errno: 144)

mysql error number: 1016

This is the same error as last night. Any idea what it is?
  #443  
Old 09-19-2004, 10:52 AM
Revan's Avatar
Revan Revan is offline
 
Join Date: Jan 2004
Location: Norway
Posts: 1,671
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This has absolutely NOTHING to do with the RPG
It says so in the SQL, the error is with the New Posts query.
  #444  
Old 09-19-2004, 04:27 PM
Vivi Ornitier's Avatar
Vivi Ornitier Vivi Ornitier is offline
 
Join Date: Nov 2001
Location: Black Mage Village
Posts: 442
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

rinkrat: try runnin this query

repair table user
  #445  
Old 09-19-2004, 04:28 PM
Hoffi's Avatar
Hoffi Hoffi is offline
 
Join Date: Nov 2001
Location: Germany
Posts: 342
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by rinkrat
AARGH!!! It was going beautifully just like last night then, all the sudden


Invalid SQL: select count(*) as new_posts from post where dateline > '1095576023'
mysql error: Can't open file: 'post.MYI'. (errno: 144)

mysql error number: 1016



This is the same error as last night. Any idea what it is?
You're Database is dead. The File where the Data fot the Table posts is stored has Problems.
That is really a mess.

Contakt your Server Admin.
  #446  
Old 09-19-2004, 05:16 PM
Revan's Avatar
Revan Revan is offline
 
Join Date: Jan 2004
Location: Norway
Posts: 1,671
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Vivi Ornitier
rinkrat: try runnin this query

repair table user
It should be: REPAIR TABLE `post`;
But if what Hoffi say is true, I doubt SQL can repair its file. Although I have no idea, so give it a shot
  #447  
Old 09-19-2004, 06:14 PM
rinkrat's Avatar
rinkrat rinkrat is offline
 
Join Date: Jan 2002
Location: Long Beach
Posts: 530
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yeah that did it! thanks I'm back live and the users are loving this hack
  #448  
Old 09-19-2004, 10:37 PM
GamerJunk.net's Avatar
GamerJunk.net GamerJunk.net is offline
 
Join Date: Jan 2004
Posts: 457
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

PHP Code:
Database error in vBulletin 3.0.3:

Invalid SQL
        
SELECT
            user
.userid,
            
user.username,
            
user.rpgclass,
            
user.element,
            
user.rpgrace,
            
user.rpgtype AS rpgtype,
            
user.alignment,
            
user.rpggender,
            
user.posts,
            
user.maxhp,
            
user.maxma,
            
user.maxpp,
            
user.inbattle,
            
user.xp,
            
user.ma AS uma,
            
user.hp AS uhp,
            
user.pp AS upp,
            
user.ap AS uap,
            
user.uttpoints AS money,
            
rpg_battle_options.namefield AS namefield
            
userfield.*,
            
rpg_battle_options.exprate,
            
rpg_battle_options.privacy AS battleprivacy,
            
rpg_items_user.*,
            
rpg_battle_stats.*,
            
rpg_rpg_race.name AS rpgracename,
            
rpg_rpg_race.alignment AS rpgalignmentname,
            
rpg_rpg_classf.name AS fclassname,
            
rpg_rpg_classf.folder AS fclassfolder,
            
rpg_rpg_classm.name AS mclassname,
            
rpg_rpg_classm.folder AS mclassfolder,
            
rpg_rpg_element.name AS elename
        FROM rpg_battle_options
            LEFT JOIN user ON user
.userid=1
            LEFT JOIN userfield ON userfield
.userid=user.userid   
            LEFT JOIN rpg_items_user ON rpg_items_user
.userid=user.userid
            LEFT JOIN rpg_battle_stats ON rpg_battle_stats
.userid=user.userid
            LEFT JOIN rpg_rpg_classf ON rpg_rpg_classf
.id=user.rpgclass
            LEFT JOIN rpg_rpg_classm ON rpg_rpg_classm
.id=user.rpgclass
            LEFT JOIN rpg_rpg_element ON rpg_rpg_element
.elementid=user.element
            LEFT JOIN rpg_rpg_race ON rpg_rpg_race
.raceid=user.rpgrace AND rpg_rpg_race.alignmentid=user.alignment
    
mysql error
Unknown column 'user.uttpoints' in 'field list'

mysql error number1054 
I get that error when viewing fpg.php and rpgcp.php

What is wrong?
  #449  
Old 09-20-2004, 12:40 AM
Dyntheos Dyntheos is offline
 
Join Date: May 2002
Posts: 64
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Revan
I assume you know what I said that about, so you do it in the SQL for the column of the user select rpg postbit
i cannot find this table, can you be more specific?
  #450  
Old 09-20-2004, 12:48 AM
Warlord's Avatar
Warlord Warlord is offline
 
Join Date: Jan 2002
Location: TN, USA
Posts: 668
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

What the hell does fpg.php do? I get:

Code:
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, scott.alan.williams1@us.army.mil and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.

Apache/1.3.27 Server at www.neropolis.com Port 80
  #451  
Old 09-20-2004, 12:54 AM
Warlord's Avatar
Warlord Warlord is offline
 
Join Date: Jan 2002
Location: TN, USA
Posts: 668
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Dyntheos
i cannot find this table, can you be more specific?
In phpMyAdmin click on the table user, scroll down to rpgstats, follwing that row to the right and click on change. Once that screen pops up change the Default value from 1 to 0 and click on save.

All done.

This is of course assuming you have this modification hacked into your postbit. Either way, it'll still set it up so that the default is the drop down menu and not the vertical rpg stats. You may have to hack the dropdown menu into the postbit if you haven't done so already.
Closed Thread

Thread Tools

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 03:38 PM.


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.06204 seconds
  • Memory Usage 2,345KB
  • 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
  • (1)bbcode_code
  • (1)bbcode_php
  • (4)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
  • (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
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete