vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   RPG Integration Hack (https://vborg.vbsupport.ru/forumdisplay.php?f=102)
-   -   RPG Integration Hack - Old Support Thread (https://vborg.vbsupport.ru/showthread.php?t=73868)

rinkrat 09-19-2004 09:46 AM

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?

Revan 09-19-2004 10:52 AM

This has absolutely NOTHING to do with the RPG :)
It says so in the SQL, the error is with the New Posts query.

Vivi Ornitier 09-19-2004 04:27 PM

rinkrat: try runnin this query

repair table user

Hoffi 09-19-2004 04:28 PM

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.

Revan 09-19-2004 05:16 PM

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 ;)

rinkrat 09-19-2004 06:14 PM

Yeah that did it! thanks :) I'm back live and the users are loving this hack

GamerJunk.net 09-19-2004 10:37 PM

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?

Dyntheos 09-20-2004 12:40 AM

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?

Warlord 09-20-2004 12:48 AM

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


Warlord 09-20-2004 12:54 AM

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.

Dyntheos 09-20-2004 01:15 AM

all fixed thx ;)

Warlord 09-20-2004 02:04 AM

Not a problem :) Glad I could help.

Revan 09-20-2004 06:54 AM

Quote:

Originally Posted by RasMasta
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?

You either changed uCS's point field to something else than 'uttpoints', or you did not install uCS. :)

Quote:

Originally Posted by Warlord
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


You mean seeing as theres no file called 'fpg.php'? :p
If you did a typo and you get this error at 'rpg.php', then your server is misconfigured in some way :)

Mr Peabody 09-20-2004 08:57 AM

1 Attachment(s)
Heres some pics of that background bug, seems to be a problem with the right side where the Race,Class and Element is listed.
It only does it when there is a class with 2 words and only on the right side.
Hope this helps.

GamerJunk.net 09-20-2004 12:18 PM

How do I install UCS it should have already installed itself right?

Revan 09-20-2004 01:32 PM

Quote:

Originally Posted by Mr Peabody
Heres some pics of that background bug, seems to be a problem with the right side where the Race,Class and Element is listed.
It only does it when there is a class with 2 words and only on the right side.
Hope this helps.

This helps immensely, I will expand the width of this template part and post a hotfix as soon as I find it! :D

Quote:

Originally Posted by RasMasta
How do I install UCS it should have already installed itself right?

No it shouldnt.
Go download uCash/uShop from their own thread :)


EDIT: I finally fixed the alignment stuff for good :D
Redownload the rpg_hotfix_battlescene.txt from the Hotfixes post :)

Cubie 09-20-2004 06:40 PM

nice job
it all works just fine
good idea to include a manual

one problem though, in my admincp I got twice the lottery option

Blam Forumz 09-20-2004 07:15 PM

Is it possible to make all the stats and everything in the postbit_legacy in a drop down menu? because this really annoys me, it exdents the size of my templates

Revan 09-20-2004 07:36 PM

Quote:

Originally Posted by Blam Forumz
Is it possible to make all the stats and everything in the postbit_legacy in a drop down menu? because this really annoys me, it exdents the size of my templates

I guess I should rename the "User Select RPG Postbit" to something a little more descriptive eh... ;)
(Btw in case you didnt get it, this is what you need to install.
Ill make it a bundled feature in v3)


Quote:

Originally Posted by Cubie
nice job
it all works just fine
good idea to include a manual

one problem though, in my admincp I got twice the lottery option

:ermm: okay just remove one of them then lol :p

Hoffi 09-21-2004 07:44 AM

I placed in the Postbit an Scrollable div Tag. But the Problem is, that only the IE can display it. So i am looking for a good Option to Display it more efficient an smaller.

deathemperor 09-21-2004 07:55 AM

a question about the future v3, are you doing it Revan ? how is the progress ? I'm almost free now since I stop making new things for my board, so if you need help on HTML template, just drop me a pm.

I do hope this hack grow more public.

If you can, please make changes to the item shop as I said before if you remember.....this is just an idea ;P

Revan 09-21-2004 10:47 AM

Quote:

Originally Posted by deathemperor
a question about the future v3, are you doing it Revan ? how is the progress ? I'm almost free now since I stop making new things for my board, so if you need help on HTML template, just drop me a pm.

I do hope this hack grow more public.

If you can, please make changes to the item shop as I said before if you remember.....this is just an idea ;P

Yes I am doing the v3.
The progress is great, just yesterday I fixed 1 major security flaw, and one medium one.
What they are is best remained secret until the new upgrade, seeing as only one reported them and its best that the general public doesnt know so we will get whiners wanting the update right now cos their battles are being pwned ;)
They regard the battle arena and the healing center.

Ill see about those itemshop changes, although I cant remember what they are so itd be good if you could remind me :p

Weirdwolf 09-21-2004 12:37 PM

Hi, I just wanted to say that this hack looks great, I hope my users will like it. :)

I've got a problem, though. I've installed it and don't get any error messages--this is good. ;) But I was reading (yes, actually reading!) the manual and got to this spot:

Go back to your forum homepage and make a post in one of the forums. Once this is done, go to the user cp. Click on modify profile. At the bottom, you should see a place to change your class, race, alignment etc. Change each of these to something other than "Unknown". Before clicking the submit changes button, you should make sure that you check the checkbox that says "Update Stats". After this is checked, you can submit the changes. If everything went well, you will see the message "Stats Updated" in the upper left breifly before you are redirected to the user control panel.

The problem is, is that my profile modification ends with "RPG Name", and that's the only RPG related thing in my edit profile area. I've checked the User Profile Field Manager in the Admin panel, double checked the profile.php file and compared it with the installer readme and it's all there.

I'm running vBulletin v3.0.3, and have the Arcade hack installed. Also, sorry if this has been covered, but I couldn't find anything helpful when I searched this thread relating to my topic.

Revan 09-21-2004 01:21 PM

Quote:

Originally Posted by Weirdwolf
Hi, I just wanted to say that this hack looks great, I hope my users will like it. :)

I've got a problem, though. I've installed it and don't get any error messages--this is good. ;) But I was reading (yes, actually reading!) the manual and got to this spot:

Go back to your forum homepage and make a post in one of the forums. Once this is done, go to the user cp. Click on modify profile. At the bottom, you should see a place to change your class, race, alignment etc. Change each of these to something other than "Unknown". Before clicking the submit changes button, you should make sure that you check the checkbox that says "Update Stats". After this is checked, you can submit the changes. If everything went well, you will see the message "Stats Updated" in the upper left breifly before you are redirected to the user control panel.

The problem is, is that my profile modification ends with "RPG Name", and that's the only RPG related thing in my edit profile area. I've checked the User Profile Field Manager in the Admin panel, double checked the profile.php file and compared it with the installer readme and it's all there.

I'm running vBulletin v3.0.3, and have the Arcade hack installed. Also, sorry if this has been covered, but I couldn't find anything helpful when I searched this thread relating to my topic.

The manuals in this hack were not written by me, and they are hopelessly outdated for now.
I fixed them on my localhost, and they will be updated for the next version :)

Your saying that rpg names dont update properly?

Mitsuaki 09-21-2004 02:07 PM

When ever someone tryes to register at my forums since i had this installed i get the following mysql error

Database error in vBulletin 3.0.3:

Invalid SQL: INSERT INTO vb3_rpg_items_user (userid) VALUES ()
mysql error: Column count doesn't match value count at row 1

mysql error number: 1136

any ideas or has anyone else got this and managed to fix it?

Revan 09-21-2004 02:20 PM

As you can see, it has no value to insert.
Make sure you did all the register.php edits correctly, because you are the first to recieve this error (afaik)

Weirdwolf 09-21-2004 02:36 PM

Quote:

Originally Posted by Revan
The manuals in this hack were not written by me, and they are hopelessly outdated for now.
I fixed them on my localhost, and they will be updated for the next version :)

Your saying that rpg names dont update properly?

The names update properly, however when I try to go to do a test battle, it says:

You are ineligible for battle at this time. Please try updating your stats in the User Control Panel.



My problem is that I have nowhere to update my stats in the User CP. The only thing I can change in relation to the RPG hack in the entire User CP is my RPG Name.

Revan 09-21-2004 03:57 PM

You didnt edit the USERCP_SHELL template then.
Because the 'Update RPG Info' link should appear there.

Weirdwolf 09-21-2004 07:07 PM

Quote:

Originally Posted by Revan
You didnt edit the USERCP_SHELL template then.
Because the 'Update RPG Info' link should appear there.

D'Oh! How embarassing. :nervous: That did it. :)

Is there a way to change the name of the currency from Gil to something else?

Revan 09-21-2004 07:12 PM

Not unless you change everywhere its hardcoded into something else
I might add a $vboptions for it in v3 tho :D

Dan 09-21-2004 07:24 PM

Nice a new RPG hack to use... I may be using this.

Mattius 09-21-2004 11:11 PM

1 Attachment(s)
I love the hack, it looks awesome!

Unfortunately im getting some blank page errors.

It happens when i go to view a battle, enter a battle.

Same thing occurs through the PM enter link, or if i go to battles.php and type in battle number and password

Also when i go to edit RPG profile in the user cp, i get a database timeout error.

The backend in admin works flawlessly, and much of the rest of it seems to, just these couple issues.

Here are a few screenies attached.

Im not sure if this has been covered elsewhere but i gave up after page 10 lol...this thread is huge..

deathemperor 09-22-2004 05:17 AM

Quote:

Originally Posted by Revan
Yes I am doing the v3.
The progress is great, just yesterday I fixed 1 major security flaw, and one medium one.
What they are is best remained secret until the new upgrade, seeing as only one reported them and its best that the general public doesnt know so we will get whiners wanting the update right now cos their battles are being pwned ;)
They regard the battle arena and the healing center.

Ill see about those itemshop changes, although I cant remember what they are so itd be good if you could remind me :p

thanks for the news

let me say it again:

the itemshop should let users to buy multi items for their inventory ( limited in ACP), and they can equip whatever items they want, items should be group to: armor, arm, hamlet, accessories....like items in RPG games

Revan 09-22-2004 05:19 AM

Quote:

Originally Posted by Mattius
I love the hack, it looks awesome!

Unfortunately im getting some blank page errors.

It happens when i go to view a battle, enter a battle.

Same thing occurs through the PM enter link, or if i go to battles.php and type in battle number and password

Also when i go to edit RPG profile in the user cp, i get a database timeout error.

The backend in admin works flawlessly, and much of the rest of it seems to, just these couple issues.

Here are a few screenies attached.

Im not sure if this has been covered elsewhere but i gave up after page 10 lol...this thread is huge..

It has been covered. You probs did not import the templates, because they are all there ;)

And the timeout was concluded as an error as a result of how PHP is compiled on the server :)



Quote:

Originally Posted by deathemperor
thanks for the news

let me say it again:

the itemshop should let users to buy multi items for their inventory ( limited in ACP), and they can equip whatever items they want, items should be group to: armor, arm, hamlet, accessories....like items in RPG games

Inventory and an Auction system is planned :)
Im unsure about the limiting tho, its easy but the point of an inventory would be to let users have alot of items, and sell and equip when they want... :)

deathemperor 09-22-2004 05:28 AM

yeah, that's it, but please let the admin limit their max items they can have in inventory.
and it's best to mention you that you should make the UCS integration clearer, like if you change the UCS points field the RPG should understand that too because I think there would be many hack uses UCS and not all of them use the default UCS points field

Revan 09-22-2004 05:42 AM

Ye I can let it move around inside the user table, but I dont want to move it out of the user table, as this would add a fookload of queries all over the hack ;)

Mr Peabody 09-22-2004 06:33 AM

Only thing I can suggest mate is making the Attacking more random, for example the base hit for a level 1 char is 5, how about figuring out a way to randomise it from 1-5.

I love the rest.

Mattius 09-22-2004 07:10 AM

Quote:

It has been covered. You probs did not import the templates, because they are all there
Ive imported them twice and 90% of them work, i cant figure out why i cant seem to view or enter battles

PHP Code:

        $stylevar[htmldoctype]
<
html dir="$stylevar[textdirection]lang="$stylevar[languagecode]">
<
head>
    <!-- 
no cache headers -->
    <
meta http-equiv="Pragma" content="no-cache" />
    <
meta http-equiv="Expires" content="-1" />
    <
meta http-equiv="Cache-Control" content="no-cache" />
    <!-- 
end no cache headers -->
    <
title>$vboptions[bbtitle] - Battle</title>
    
$headinclude
</head>
<
body>
$header
<table width="100%" height="100%" border="0" align="center" cellpadding="0" cellspacing="0">
  <
tr>
    <
td width="36" height="300" align="left" valign="top" nowrap background="images/misc/vborgmiddle_01.gif"><img src="images/misc/vborgmiddle_01.gif" width="36" height="57" alt=""></td>
    <
td width="100%" height="100%" valign="top">
$navbar
<form name="enterbattle" method="post" action="battlefight.php?action=enterbattle">
<
table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%">
  <
tr>
    <
td width="77%" valign="top">
    <
table border="1" cellpadding="4" cellspacing="0" style="border-collapse: collapse" bordercolor="#000000" width="100%">
      <
tr>
        <
td width="100%">
        <
p align="center"><b>Welcome to the battle arena!</b></td>
      </
tr>
        <
td width="100%" valign="top">
        &
nbsp;
        <
table align="center" cellpadding="3" cellspacing="0" border="1" width="80%" bordercolor="#000000" style="border-collapse: collapse">
<
tr>
        <
td width="100%">
        <
p align="center"><b>Battle System Links</b></td>
</
tr>
        <
td width="100%">
        <
p align="center">
        <
a href="battle.php?action=newbattle"><strong>New Battle</strong></a>
        <
a href="battle.php?action=browse"><strong>Browse</strong></a>
        <
a href="battle.php?action=showbattlestats"><strong>Top 10</strong></a>
        <
a href="battle.php?action=showuserstats"><strong>Your Stats</strong></a>
        </
td>
</
tr>
</
table>
  </
center><br />
        <
table align="center" border="1" cellspacing="0" style="border-collapse: collapse" bordercolor="#000000" width="300" height="56" cellpadding="2">
      <
tr>
        <
td width="200%" height="19" colspan="2">
        <
p align="center"><b>Enter Battle</b></td>
      </
tr>
        <
td width="50%">
 
Battle Number:</td>
        <
td width="50%">
<
input type="text" class="input" name="battlenumber" size="12" maxlength="10"></td>
      </
tr>
        <
td width="50%">

Battle Password:</td>
        <
td width="50%"><input type="text" class="input" name="battlekey" size="12" maxlength="50"></td>
      </
tr>
        <
td width="100%" colspan="2">
 <
p align="center">
 <
input type="submit" class="input" name="Enter Battle" value="Enter Battle">
</
td>
      </
tr>
    </
table>
  </
td>
</
form>
</
td>
    <
td width="37" height="300" align="right" valign="top" nowrap background="images/misc/vborgmiddle_03.gif"><img src="images/misc/vborgmiddle_03.gif" width="37" height="57" alt=""></td>
  </
tr>
</
table>
$footer
</body>
</
html

Thats the main battle template, which should display it all...but alas..

or possibly battle arena template

PHP Code:

  $stylevar[htmldoctype]
<
html dir="$stylevar[textdirection]lang="$stylevar[languagecode]">
<
head>
    <!-- 
no cache headers -->
    <
meta http-equiv="Pragma" content="no-cache" />
    <
meta http-equiv="Expires" content="-1" />
    <
meta http-equiv="Cache-Control" content="no-cache" />
    <!-- 
end no cache headers -->
    <
title>$vboptions[bbtitle] - Battle</title>    
$headinclude
</head>
<
body>
$header
<table width="100%" height="100%" border="0" align="center" cellpadding="0" cellspacing="0">
  <
tr>
    <
td width="36" height="300" align="left" valign="top" nowrap background="images/misc/vborgmiddle_01.gif"><img src="images/misc/vborgmiddle_01.gif" width="36" height="57" alt=""></td>
    <
td width="100%" height="100%" valign="top">

$navbar
<table cellpadding="2" cellspacing="0" border="0" width="100%" align="center">
  <
tr>
        <
td width="100%"><b>? <a href="battle.php">Battle</a> ? Battle # $battlenumber - $battle[battlename]</b> </td>
  
</tr>
</
table>
&
nbsp;
<
table border="1" cellpadding="4" cellspacing="0" style="border-collapse: collapse" bordercolor="#000000" width="100%">
  <
tr>
    <
td width="25%">
    <
p align="center"><b>
    
$oppstats[username]</b></td>
    <
td width="50%">
    <
p align="center"><b>
    
$battle[battlename]</b></td>
    <
td width="25%">
    <
p align="center"><b>$ownerstats[username]
    </
b></td>
  </
tr>
  <
tr>
    <
td width="25%" valign="top">
    <
div align="left">
    <
table border="0" cellpadding="4" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%">
      <
tr>
        <
td width="1%" valign="top">$avatar2</td>
        <
td width="99%">
              <
b>HP:</b$oppstats[hp]/$oppstats[maxhp]<br />

                  <
table width="100" border="1" cellspacing="0" cellpadding="0" bordercolor="#000000" style="border-collapse: collapse">
                    <
tr
                      <
td><img src="images/bar/bhg.gif" width="$opphpbar%" height="5"><img src="images/bar/bxb.gif" width="1" height="5"></td>
                    </
tr>
                  </
table>
                     <
b>MA:</b$oppstats[ma]/$oppstats[maxma]<br />
 
                  <
table width="100" border="1" cellspacing="0" cellpadding="0" bordercolor="#000000" style="border-collapse: collapse">
                    <
tr
                      <
td><img src="images/bar/bxg.gif" width="$oppmabar%" height="5"><img src="images/bar/bxb.gif" width="1" height="5"></td>
                    </
tr>
                  </
table>
              <
b>PP:</b$oppstats[pp]/$oppstats[maxpp]<br />
               <
table width="100" border="1" cellspacing="0" cellpadding="0" bordercolor="#000000" style="border-collapse: collapse">
                    <
tr
                      <
td><img src="images/bar/bxg.gif" width="$oppppbar%" height="5"><img src="images/bar/bxb.gif" width="1" height="5"></td>
                    </
tr>
                  </
table>
              <
b>Limit: </b>$oppstats[ap]%<br />
               <
table width="100" border="1" cellspacing="0" cellpadding="0" bordercolor="#000000" style="border-collapse: collapse">
                    <
tr
                      <
td><img src="images/bar/bxg.gif" width="$oppapbar%" height="5"><img src="images/bar/bxb.gif" width="0" height="5"></td>
                    </
tr>
                  </
table><br />
Reg Att$oregatt<br />
Mag Att$omagicatt<br />
Reg Def$oregdef<br />
Mag Def$omagicdef<br />                
Speed$ospeed<br />
Evade$oevade<br /><br />
<
table width="100%" style="border-collapse: collapse" bordercolor="#000000" border="1"><td>
<
strong>Class:</strong$opponent[classname]<br />
<
strong>Race:</strong$opponent[racename]<br />
<
strong>Element:</strong$opponent[elename]<br />
</
td></table>
        </
td>
      </
tr>
    </
table>
      </
center>
    </
div>
    </
td>
    <
td width="50%" height="200" valign="bottom" background="images/$battle[icon]">&nbsp;
    <
table border="0" width="100%" height="10" cellspacing="0" cellpadding="2" style="border-collapse: collapse" bordercolor="#111111">
            <
tr>
          <
td width="1%"> <img src="images/style/classes/flip_$opponent[classfolder].gif" align="left" alt="Hp: $oppstats[hp]/$oppstats[maxhp]border="0"></td>
              <
td width="98%"></td>
              <
td width="1%">
              <
img src="images/style/classes/$owner[classfolder].gif" align="left" alt="HP: $ownerstats[hp]/$ownerstats[maxhp]border="0"></td>
            </
tr>
          </
table>
          </
td>
    <
td width="25%" valign="top">
    <
div align="left">
    <
table border="0" cellpadding="4" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%">
      <
tr>
        <
td width="50%">
                 <
b>HP:</b$ownerstats[hp]/$ownerstats[maxhp]<br />

                  <
table width="100" border="1" cellspacing="0" cellpadding="0" bordercolor="#000000" style="border-collapse: collapse">
                    <
tr
                      <
td><img src="images/bar/bhg.gif" width="$ownerhpbar%" height="5"><img src="images/bar/bxb.gif" width="1" height="5"></td>
                    </
tr>
                  </
table>
                 <
b>MA:</b$ownerstats[ma]/$ownerstats[maxma]<br />
                  <
table width="100" border="1" cellspacing="0" cellpadding="0" bordercolor="#000000" style="border-collapse: collapse">
                    <
tr
                      <
td><img src="images/bar/bxg.gif" width="$ownermabar%" height="5"><img src="images/bar/bxb.gif" width="1" height="5"></td>
                    </
tr>
                  </
table>
                 <
b>PP:</b$ownerstats[pp]/$ownerstats[maxpp]<br />
                  <
table width="100" border="1" cellspacing="0" cellpadding="0" bordercolor="#000000" style="border-collapse: collapse">
                    <
tr
                      <
td><img src="images/bar/bxg.gif" width="$ownerppbar%" height="5"><img src="images/bar/bxb.gif" width="1" height="5"></td>
                    </
tr>
                  </
table>
                 <
b>Limit:</b$ownerstats[ap]%<br />
                  <
table width="100" border="1" cellspacing="0" cellpadding="0" bordercolor="#000000" style="border-collapse: collapse">
                    <
tr
                      <
td><img src="images/bar/bxg.gif" width="$ownerapbar%" height="5"><img src="images/bar/bxb.gif" width="0" height="5"></td>
                    </
tr>
                  </
table><br />

Reg Att$uregatt<br /> 
Mag Att$umagicatt<br />
Reg Def$uregdef<br /> 
Mag Def$umagicdef<br />                        
Speed$uspeed<br /> 
Evade$uevade<br /><br />
<
table width="100%" style="border-collapse: collapse" bordercolor="#000000" border="1"><td>

<
strong>Class:</strong$owner[classname]<br />
<
strong>Race:</strong$owner[racename]<br />
<
strong>Element:</strong$owner[elename]<br />
</
td></table>
        </
td>
        <
td width="50%" valign="top">$avatar1</td>
      </
tr>
    </
table>
      </
center>
    </
div>
    </
td>
  </
tr>
  <
tr>
    <
td width="25%">
              
         
              <
b>Inventory:</b$oppitems</td>
    <
td width="50%">
    <
p align="center">
    <
b>Battle:</b$battlenumber</td>
    <
td width="25%">
                 <
b>Inventory: </b>$owneritems
                 
              
</td>
            </
tr>

  </
table>
<
tr><td>
<
br />
$battlemoves
<br />
$attackform
   
<br />
<
center><a href="battlefight.php?action=enterbattle&battlenumber=$battlenumber&username=$bbuserinfo[username]&userid=$bbuserinfo[userid]&battlekey=$battlekey"><strong>Refresh</strong><!-- <img src="refresh.gif" border="0" alt="Refresh"> --></a></center>
</
td>
    <
td width="37" height="300" align="right" valign="top" nowrap background="images/misc/vborgmiddle_03.gif"><img src="images/misc/vborgmiddle_03.gif" width="37" height="57" alt=""></td>
  </
tr>
</
table>
$refresh 
$footer
</td></tr></table>
</
body>
</
html


Revan 09-22-2004 01:54 PM

Then I got no idea whatsoever
the only thing I can think about would be this:
Open up the rpg_templates.xml and check that you got all the templates inserted and add those that are lacking if any.

Dyntheos 09-23-2004 02:11 AM

I am having a major meltdown with regards to the itemshop.

Adding items is ok, as is creating new categories and editing categories as well.

However, in the main list of items, where it dispalys all the items and thier buffs, costs etc.. you can then click "update items". When I do, it completely shuts down the whole site.

I can't load any pages, I cannot ftp into the site, and everything dies for an extended period of time. Usually at least 20 minutes.


All times are GMT. The time now is 06:06 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.02258 seconds
  • Memory Usage 2,131KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (4)bbcode_php_printable
  • (18)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete