Quote:
Yesterday at 08:54 PM legendarysk8er said this in Post #2050
I've recently had a problem. On my forums I have about 3,400 posts and I'm about 1500 more than the second top poster. My character was 12,000 hp when we first made the rpg, and a few days ago he dropped to 7,000. Most other members that our like 20 levels below have like more hp than me, I didn't edit my account or anything, and I dont know whats wrong.
|
Since HP is based on posts per day and the amount of time you have been with the forums, it is possible that your HP went down because you posted less, or the other members have a much higher post per day count. Can you verify this?
Quote:
Yesterday at 11:45 PM Wedge said this in Post #2051
Hey, I just installed it on my board... but the itemshop.php won't load. and I get a mysql error.. the battle page works as does the cp page... but itemshop and heal get:
Database error in vBulletin 2.2.7:
Invalid SQL: SELECT items_user.bankval, userfield.field5 FROM items_user, userfield WHERE items_user.userid='1' AND userfield.userid='1'
mysql error: Unknown column 'userfield.field5' in 'field list'
mysql error number: 1054
Can someone help me?
|
Did you run install_itemshop_items.php?
Quote:
Today at 03:40 AM Me! said this in Post #2052
I'm having a little problem displaying items. I did as you said about keep adding"AND" statements to only display certain items. However it displays only in text now. For example this is what I did in admin/functions.php:
Code:
}
$xc="item$nr";
if($post[$xc]!="No Item" AND $nr == 1 AND $nr == 2 AND $nr == 3 AND $nr == 4) {
$xvv = "item$nr";
$xvvv = "icon$nr";
if(empty($post[$xvvv])) {
$post[items] .= "<a href=\"itemshop.php?action=view&id=$post[$xv]\"><img src=\"https://vborg.vbsupport.ru/images/itemshop/$post[$xvv].gif\" border=\"0\" alt=\"$post[$xvv]\"></a> ";
} else {
To show the items I used:
and in the postbit it doesn't display an image, rather it just says "Cotton Shirt"
|
Try doing this instead:
Code:
}
$xc="item$nr";
if($post[$xc]!="No Item" AND ($nr == 1 OR $nr == 2 OR $nr == 3 OR $nr == 4)) {
$xvv = "item$nr";
$xvvv = "icon$nr";
if(empty($post[$xvvv])) {
$post[items] .= "<a href=\"itemshop.php?action=view&id=$post[$xv]\"><img src=\"https://vborg.vbsupport.ru/images/itemshop/$post[$xvv].gif\" border=\"0\" alt=\"$post[$xvv]\"></a> ";
} else {
Quote:
Today at 05:36 AM Triade said this in Post #2053
Little problem with weapons... they do a lot of miss...
here a log of a battle...
As you see, there's worse chance of hit with weapons and a good one with fists
It a buff weapon problem? or something else?
|
I see two problems. First, the armor that each person is wearing is providing a huge defense bonus. Second, the element types of each person are both considered the weaker one to their opponent. This means that all damage is halved. My only suggestion would be to halve the defenses of all armor, but maintain the current prices. Or, you could let people just use their fists when it is a stalemate with weapons.