PDA

View Full Version : RPG Integration Hack /w Battle (BETA)


Pages : 1 2 [3] 4 5 6 7 8 9 10 11

mr e
01-09-2003, 02:59 AM
hmmm...same here with the stats being 0

also bitsys

should this code have {} in it?

if ($user[element] == $opponentstats[eleweakness])
$uelemod = 1.5;
elseif ($user[element] == $opponentstats[elestrength])
$uelemod = 0.5;
else
$uelemod = 1;


i just thought it should but maybe not

Mijae
01-09-2003, 03:03 AM
nevermind, stats at 0 only show up in the rpg.php popup, stats show up ok in battle.

Mrpolish
01-09-2003, 03:04 AM
Yeah it has to be opened and closed

if ($user[element] == $opponentstats[eleweakness])
{
$uelemod = 1.5;
elseif ($user[element] == $opponentstats[elestrength])
$uelemod = 0.5;
else
$uelemod = 1;
}

mr e
01-09-2003, 03:06 AM
Stuff to fix

in admin/functions.php find (remove the #)


$rpggenderimage = '<img src="{#imagesfolder}/gender/female.gif" alt="female.gif" border="0">';
} elseif($post[rpggender] == "2") {
$rpggendername = "Male";
$rpggenderimage = '<img src="{#imagesfolder}/gender/male.gif" alt="female.gif" border="0">';


and change it to


$rpggenderimage = '<img src="{#imagesfolder}/gender/female.gif" alt="Female" border="0">';
} elseif($post[rpggender] == "2") {
$rpggendername = "Male";
$rpggenderimage = '<img src="{#imagesfolder}/gender/male.gif" alt="Male" border="0">';


=============================================

in battleupdate.php find


// This element strength/weakness code is by mr e
if ($user[element] == $opponentstats[eleweakness])
$uelemod = 1.5;
elseif ($user[element] == $opponentstats[elestrength])
$uelemod = 0.5;
else
$uelemod = 1;
// End mr e's code


and replace it with


// This element strength/weakness code is by mr e
if ($user[element] == $opponentstats[eleweakness]) {
$uelemod = 1.5;
} elseif ($user[element] == $opponentstats[elestrength]) {
$uelemod = 0.5;
} else {
$uelemod = 1;
}
// End mr e's code


=============================================

in rpg.php find


$regatt = $showlevel * $userclass[regatt];
$magicatt = $showlevel * $userclass[magicatt];
$magicdef = $showlevel * $userclass[magicdef];
$regdef = $showlevel * $userclass[regdef];
$speed = $showlevel * $userclass[speed];
$evade = $showlevel * $userclass[evade];


and replace it with


$regatt = $level * $userclass[regatt];
$magicatt = $level * $userclass[magicatt];
$magicdef = $level * $userclass[magicdef];
$regdef = $level * $userclass[regdef];
$speed = $level * $userclass[speed];
$evade = $level * $userclass[evade];


I'll post any new changes if i find em

Travis641
01-09-2003, 03:26 AM
I can't get this to work no matter what. =\ I used to have v.56 and this same problem existed - now I've installed your v.59 and the problem STILL exists for me. I'm checked the update stats box numerous times - it just doesnt seem to be helping.

Anyways, I can't get any - or very few - stats to show up.

I can get my level, max hp, max ma, and max pp, to show, (but without my actual hp showing - just the max), I can also get my gender, whether I'm dead or alive, and whether I'm in battle. Nothing else works. Check Stats says all my stats are 0. However, my alignment, race, and Class DO show up there.

What am I doing wrong? I've attached a picture to help.

Edit: If a user does NOT select a class, the nonef(or m) image DOES work. Also - I've made sure all my profile fields are right.

mr e
01-09-2003, 03:33 AM
do you have the 2 really big file edits in showthread.php?

Travis641
01-09-2003, 03:34 AM
Edit: yes I do, but still nothing. However, the stats DID show up fine in a battle as well.

mr e
01-09-2003, 03:42 AM
also bitsys

i can't post replys, the error is


Warning: Failed opening '/lotsofstuff/newreply.php' for inclusion (include_path='') in Unknown on line 0


im completely lost on this one

mr e
01-09-2003, 03:43 AM
then it's gotta be in the showthread.php or at least i think it does, try going back and manually editing that file and make sure the code is right

Originally posted by Travis641
Edit: yes I do, but still nothing. However, the stats DID show up fine in a battle as well.

Travis641
01-09-2003, 03:54 AM
I checked again - even reinstalled it on a brand new showthread.php - nothing =\

Travis641
01-09-2003, 04:00 AM
Also, the battle's aren't detecting weapons, armor, or potions I believe. Any fix?

Bitsys
01-09-2003, 12:24 PM
Heh, I forgot to tell you guys some important info about the new version.

The user profile fields "Experience" and "Level" are no longer used. Also, post count is no longer used to determine a user's level. Instead, there is a new field in the user table called "xp". This is the user's experience. From this number, the user's level is calculated on the fly. You can determine how much experience it takes to get to the next level by adjusting the "Power level modifier" field in the Battle Options menu.

The reason why all stats went back to 0 is that everyone starts with 0 experience. If you want people to get experience for posts they previously made, then go to the "Mass Experience" Menu in the admin cp.

You can let users gain experience for posts, battle turns, and battle wins, all configurable in the Battle Options menu.

mr e:
Thanks for finding those, the new files will bit uploaded in a little bit.


Travis641:
It sounds like your database did not have all of the queries run successfully. Did you get any errors when you installed it with vbhacker?

Try running the attached file, and let me know what it says. Make sure you upload it into your admin directory.

To fix the weapons, armor, and potions not showing up, read https://vborg.vbsupport.ru/showthread.php?postid=329575#post329575 . Make sure you have done that.

mr e (re: newreply.php):
Are you sure that newreply.php is in the correct directory? That doesn't seem like an error the hack would cause, since in newreply.php it only adds some database queries.

vdinh
01-09-2003, 04:00 PM
Hi Bitsys,
I have a suggestion: Since we already have GenSec's Pickpocket hack. Is there a way that you can allow users to steal weapons from others ? That would be fun :D

Travis641
01-09-2003, 08:38 PM
Originally posted by Bitsys
Travis641:
It sounds like your database did not have all of the queries run successfully. Did you get any errors when you installed it with vbhacker?

Try running the attached file, and let me know what it says. Make sure you upload it into your admin directory.

To fix the weapons, armor, and potions not showing up, read https://vborg.vbsupport.ru/showthread.php?postid=329575#post329575 . Make sure you have done that.

I get this, when I run the file:

Populating items_user database
No IDs were inserted.
Done with the items_user database.
Populating battle_stats database
No IDs were inserted.
Done with the battle_stats database.
Fix done.

But still nothing in showthread =\

Also weapons are working now! =)

Bitsys
01-09-2003, 10:42 PM
Originally posted by Travis641


I get this, when I run the file:

Populating items_user database
No IDs were inserted.
Done with the items_user database.
Populating battle_stats database
No IDs were inserted.
Done with the battle_stats database.
Fix done.

But still nothing in showthread =\

Also weapons are working now! =)

Make sure that the install file made changes to the second HUGE database query in showthread.php. There are two queries that are very similar. After the hack, they should be nearly identical. The queries begin with

$posts=$DB_site->query("

and

$post=$DB_site->query_first("

Each of these queries should be similar, and they should also be a lot longer than the default queries. Make sure that this is the case. To find out what code needs to be inserted, have vbhacker generate a text file of the hack, and manually make sure that the changes were applied to both queries, even when there is only one file edit.

Travis641
01-10-2003, 12:21 AM
I've checked and reinstalled the showthread.php making PERFECTLY sure that it was right - but it's still not working. =\

Travis641
01-10-2003, 12:44 AM
Doh! Apparently something DID go wrong during installation. I replaced all the files with clean files, and reinstalled just the file edits and now it works perfectly (well the check stats still says my attack and all that is 0, but I can live with that!). Sorry for all the trouble! =)

mr e
01-10-2003, 01:49 AM
what do u mean the stats are 0? if you fixed the showthread they should all be fixed

Travis641
01-10-2003, 01:55 AM
I mean when I click "Check Stats" on the posts, it says:
Attack: 0
Magic Attack: 0
Speed: 0
Defense: 0
Magic Defense: 0
Evade: 0

But when in battles its all fine.

Davey
01-10-2003, 02:09 AM
I tried installing this again (I'm not sure what version of the battle system, it was a while back) and followed the guide as best I could (choosing not to edit showthread.php) and whereever I went I seemed to get database errors. Itemshop.php, etc.

Dave.

PS: Yes I'd followed all the steps correctly.

Xyphen
01-10-2003, 02:09 AM
Bitsys, I just upgraded to the new version v.59b and now when I visit someones Profile "GetInfo" it gives this error..

Database error in vBulletin 2.2.8:

Invalid SQL:
SELECT
user.userid,user.rpgclass,user.element,user.rpgrac e,user.alignment,user.rpggender,user.posts,user.ma xhp,user.maxma,user.maxpp,user.inbattle,
user.ma AS uma,user.hp AS uhp,user.pp AS upp,user.ap AS uap,
items_options.pointfield,battle_options.namefield, userfield.*,
battle_options.usepostcount,battle_options.exprate ,battle_options.levelfield,battle_options.privacy AS battleprivacy,
items_user.*,battle_stats.*,rpg_race.name AS rpgracename,rpg_race.alignment AS rpgalignmentname,rpg_classf.name AS fclassname,
rpg_classf.folder AS fclassfolder,rpg_classm.name AS mclassname,rpg_classm.folder AS mclassfolder,rpg_element.name AS elename
FROM user, userfield, items_user, battle_stats, rpg_classf, rpg_classm, rpg_element, rpg_race, battle_options, items_options
WHERE
user.userid=10
AND userfield.userid=user.userid
AND items_user.userid=user.userid
AND battle_stats.userid=user.userid
AND rpg_classf.id=user.rpgclass
AND rpg_classm.id=user.rpgclass
AND rpg_element.elementid=user.element
AND rpg_race.raceid=user.rpgrace
AND rpg_race.alignmentid=user.alignment

mysql error: Unknown column 'battle_options.usepostcount' in 'field list'

mysql error number: 1054

Date: Friday 10th of January 2003 05:03:40 AM
Script: http://www.ooforums.net/forums/forums/member.php?s=&action=getinfo&userid=10
Referer: http://ooforums.net/forums/index.php?s=

Bitsys
01-10-2003, 02:22 AM
Travis641:
Re-download the .zip file and upload rpg.php to your server. That should fix it.

Davey:
Can you post the errors you are getting?

AViO 07:
Remove the old member profile add-on (it was one file edit), and use the version I am attaching here. Let me know if it doesn't work or if you are still having problems with the new version.

Travis641
01-10-2003, 02:35 AM
Yay, thanks alot. Everything works perfect now! =)

mr e
01-10-2003, 02:46 AM
well looks like most of the gimongous erros are gone

Mijae
01-10-2003, 03:49 AM
My users are level 20+ withing a day (will reset again) and after updating their stats they still show up as 0 in rpg.php

Mijae
01-10-2003, 04:00 AM
Also, does anyone have a good formula to calculate the Buff?

mr e
01-10-2003, 04:16 AM
https://vborg.vbsupport.ru/showthread.php?postid=340122#post340122

Originally posted by v0id
My users are level 20+ withing a day (will reset again) and after updating their stats they still show up as 0 in rpg.php

mr e
01-10-2003, 04:18 AM
do you mean weapons/armor etc?

Originally posted by v0id
Also, does anyone have a good formula to calculate the Buff?

Cyclonus888
01-10-2003, 04:41 AM
sorry but Im completely new to installing hacks....how do I make a query??

Bitsys
01-10-2003, 10:33 AM
Originally posted by v0id
My users are level 20+ withing a day (will reset again) and after updating their stats they still show up as 0 in rpg.php

You can adjust the amount of experience it takes to gain a level in the Battle Options menu. Try changing the Power Level Modifier to 1. It will automatically apply to everyone, without people having to update their stats. You can play around with this to get the desired result.

To fix the 0 in rpg.php, redownload the .zip file and re-upload rpg.php to your server.


Originally posted by v0id
Also, does anyone have a good formula to calculate the Buff?

I think armor should be less buff than weapons of the same price range, but should also be a little more expensive.


Originally posted by Cyclonus888
sorry but Im completely new to installing hacks....how do I make a query??
If you have phpmyadmin, then try reading http://www.vbulletin.com/forum/showthread.php?s=&threadid=18558 Also, if you haven't already read it, I suggest you read https://vborg.vbsupport.ru/showthread.php?s=&threadid=39142

However, for a clean install, you shouldn't have to run any queries unless the install script fails to execute some of them.

Xyphen
01-10-2003, 10:48 AM
Bitsys, the problem is now fixed, thank you!

PSI|Dr-X
01-10-2003, 11:50 AM
I think the full version is comming very soon :D everything is perfect

only the members are SPAMMING to get the coins :P

Mijae
01-10-2003, 01:41 PM
Bitsys, any chance of adding more then one potion to inventory? Same with spells? You could probably make this selectable in admin cp if its not hard :P

Graphics
01-10-2003, 02:33 PM
This hack looks truely brillant Bitsy. And to be honest I think you should make Firefly change your title to 'Ultimate Hacker'. ;) Anyways, I have a suggestion for it.

I think a stand-alone hack like this has already been made but I was wondering if you could integrate it... It's a hack that allows you to give your members a rank. i.e. General, Leuitenant for exmaple. And then an image or text signifying the members rank would appear in the postbit.

You could also make it so certain members become 'bosses' when they reach a certain level or if they are a Staff member.

I'd appreciate it if you could add these features. :p

over
01-10-2003, 02:41 PM
had same problem as "assassingod" with the 30 secs problem on both 2.2.8 AND 2.2.9 however have sorted out a solution, tryin to work out what done to correct so can post to hassassingod him out :)


Originally posted by Bitsys
VeoMorphine:
Nope, 2 or 3 tables had new fields added to them.

assassingod:
An easy fix is to comment out the code. Put "/*" before the loop code and "*/" after the loop code. If this doesn't fix the problem, then there is something seriously wrong.

BTW, the loop code begins with
// Part of the following code comes from a post made byand ends with// End joint fix.So, you should make it look like/*
// Part of the following code comes from a post made byAnd*/ // End joint fix.

Bitsys
01-10-2003, 04:06 PM
v0id:
As much as I would like that feature, I believe it would take too long to develop and implement.

Graphics:
That sounds a lot like a clan add-on, right? Each member has a certain rank, with the clan leaders being the bosses?

over:
Does the battle correctly detect weapons in your inventory? Also, does the itemshop work properly?

Mijae
01-10-2003, 05:17 PM
Aww, it would be so nice to have that, someone go do eet :P

Mijae
01-10-2003, 05:38 PM
Eh, I remembered a suggestion I had:

Make a script that will revive all who are dead each XX hours, to XX HP. Make it all selectable in the admin cp. For example revive all dead users every 172800 seconds to 25% of their total HP.

It would be useful, but then I guess it would run a lot of queries right?

Bitsys
01-10-2003, 06:19 PM
Originally posted by v0id
Eh, I remembered a suggestion I had:

Make a script that will revive all who are dead each XX hours, to XX HP. Make it all selectable in the admin cp. For example revive all dead users every 172800 seconds to 25% of their total HP.

It would be useful, but then I guess it would run a lot of queries right?

Well, I think the query would be:

UPDATE user SET hp=maxhp*0.25 WHERE hp=0
However, if the users figured out the reset times, then they would participate in a battle, die, and not worry about the consequences since they would get auto-revived, whereas people who dies just after the last reset would have to suffer a lot longer.

Xyphen
01-10-2003, 06:28 PM
For who all got a error when visiting online.php a parse error..

This is how to fix it.

FIND THIS IN ONLINE.PHP
case 'itemshop':
$userinfo[where] = "Viewing <a href='itemshop.php?s=$session[sessionhash]'>Itemshop<a>";
break;
case 'battlefight':
$userinfo[where] = 'Viewing a Battle';
break;
case 'battle':
$userinfo[where] = 'Viewing <a href='battle.php?s=$session[sessionhash]'>Battle Main</a>';
break;
case 'battleupdate':
$userinfo[where] = 'Updating a Battle';
break;
case 'heal':
$userinfo[where] = 'Healing Center';
break;

Replace With
case 'itemshop':
$userinfo[where] = "Viewing <a href='itemshop.php?s=$session[sessionhash]'>Itemshop<a>";
break;
case 'battlefight':
$userinfo[where] = "Viewing a Battle";
break;
case 'battle':
$userinfo[where] = "Viewing <a href='battle.php?s=$session[sessionhash]'>Battle Main</a>";
break;
case 'battleupdate':
$userinfo[where] = "Updating a Battle";
break;
case 'heal':
$userinfo[where] = "Healing Center";
break;

Davey
01-10-2003, 06:54 PM
[AViO 07]: Actually there's a html error there.
Shouldn't this:

case 'itemshop':
$userinfo[where] = "Viewing <a href='itemshop.php?s=$session[sessionhash]'>Itemshop<a>";
break;
Be this:

case 'itemshop':
$userinfo[where] = "Viewing <a href='itemshop.php?s=$session[sessionhash]'>Itemshop</a>";
break;
The close <a> tag was missing a '/'. This would have lead there to be an infinite link, no?

Dave.

PS: I'll install afresh now and see if I still get the errors.

Davey
01-10-2003, 07:44 PM
Ok, now you have to sort out a bank error.
Only userid '1' can deposit money properly.
No-body else can.
This is EXTREMELY annoying and has happened before on a previous install of the itemshop/store.

Bitsys
01-10-2003, 08:32 PM
Oops, there are tons of errors in online.php besides the ones you guys pointed out. I am in the process of fixing these right now. It will make for a better online.php overall. Thanks for bringing this to my attention.

Davey:
Is it giving you an error message? If not, do the following:
In phpmyadmin, go to the items_user table. Browse this table. There should be one row per user, if there isn't then let me know.

Davey
01-10-2003, 09:18 PM
Actually, there's no error message.
It just only lets userid '1' deposit money.
I added the user 'bank' in the admin panel and gave it 10000000, and it worked, it had 10000000.
I went to the bank logged in as 'Bank', and deposited all 10000000, and it said:
Cash: 0
Deposit:
Or something of the like. The 'Deposit' bit was empty, not even '0'.
Here is a screenshot of the phpmyadmin 'items_user' table:

Dave.

PS: It seems to me that when you add users in the admin panel, it's not adding those fields correctly.

Bitsys
01-10-2003, 09:30 PM
Originally posted by Davey
Actually, there's no error message.
It just only lets userid '1' deposit money.
I added the user 'bank' in the admin panel and gave it 10000000, and it worked, it had 10000000.
I went to the bank logged in as 'Bank', and deposited all 10000000, and it said:

Or something of the like. The 'Deposit' bit was empty, not even '0'.
Here is a screenshot of the phpmyadmin 'items_user' table:

Dave.

PS: It seems to me that when you add users in the admin panel, it's not adding those fields correctly.

Oops, forgot to tell you about that. That has been a bug since the beginning. When you add users via the admin cp, the user IDs aren't added to the items_user table or the battle_stats table. To fix this, see the attached file and instructions at https://vborg.vbsupport.ru/showthread.php?postid=340220#post340220 . Run the attached file and post what it says. Make sure it is in your admin directory.

Davey
01-10-2003, 10:00 PM
What attached file?
And now I can't battle either, it says You are inelegible for battle, when I'm not. The other user is legible for battle, also.

Dave.

Bitsys
01-10-2003, 10:01 PM
Originally posted by Davey
What attached file?
And now I can't battle either, it says You are inelegible for battle, when I'm not. The other user is legible for battle, also.

Dave.

The attached file at https://vborg.vbsupport.ru/show...0220#post340220 .

Bitsys
01-10-2003, 11:10 PM
Alright, I think I have fixed online.php. Follow the instructions in the attached file and let me know how it goes. I have tested this on my test board and it seems to work fine, however, I may have missed something (again).

Xyphen
01-10-2003, 11:36 PM
Davey, thnx for the fix, but there is a update now!

Mijae
01-11-2003, 02:50 AM
How is the HP, MP, PP calculated? I have 1 user at level 2 with 1110+ hp and one with 650+, while all others have 250 at most. I want to know how its calculated so I can figure it out.

Bitsys
01-11-2003, 02:57 AM
Originally posted by v0id
How is the HP, MP, PP calculated? I have 1 user at level 2 with 1110+ hp and one with 650+, while all others have 250 at most. I want to know how its calculated so I can figure it out.

The formulas are located in member.php. Search for hp, ma, pp ,etc...

The formulas work off of several things, including posts per day, length of time being a member, element, and experience/level. The reason why some users who are low levels can have such high stats is that they may have a much higher post per day number.

The exact code is attached to this post, making it easier to look at. If you have any specific questions about parts of the code, then ask me about it and I will try to explain it. Please remember that this code comes mostly from the Class Hack v3.3 by DarkVincent.

mr e
01-11-2003, 05:00 AM
are all these fixes you listed in the new updated version? ex: adding users via admin etc

Mijae
01-11-2003, 04:53 PM
There is some kind of error when generating PMs. The challenger user gets a wrong like in the PM, it doesnt include battle #, thus newbies dont know how to continue from there.


Mary-chan has challenged you in a battle. It is battle number and is called Ok, I's challenge you. *prepares to die*. There is 0 gil at stake in this battle. Your battle password is 1234. To go to your battle click here


See, it says Battle number and wont show the number, and the link has battlenumber=&battlekey=XXXX

PSI|Dr-X
01-11-2003, 05:23 PM
look at the templates there must be something wrong i think with the installation

Bitsys
01-11-2003, 05:27 PM
Originally posted by v0id
There is some kind of error when generating PMs. The challenger user gets a wrong like in the PM, it doesnt include battle #, thus newbies dont know how to continue from there.



See, it says Battle number and wont show the number, and the link has battlenumber=&battlekey=XXXX

The error is in battle.php. The fix will be in the new version. Hopefully, I will be able to release the new version today. The new version will also, hopefully, have Lesane's Store integration. All you will have to do is say "Yes I have it installed" or "No I do not have it installed" in the Itemshop Options menu.

PSI|Dr-X
01-11-2003, 06:40 PM
Cool ill take itemshop :) heh

Xyphen
01-11-2003, 07:48 PM
About Lesane's Store integration, I am not going to install it seprately, can you make it like, so when we upgrade/install it gives us a option to install that hack or not? and you include all the files and stuff with all the addons, when installing it also asks which addons you would like to install. :smoke:

Bitsys
01-11-2003, 08:21 PM
Originally posted by AViO 07
About Lesane's Store integration, I am not going to install it seprately, can you make it like, so when we upgrade/install it gives us a option to install that hack or not? and you include all the files and stuff with all the addons, when installing it also asks which addons you would like to install. :smoke:

Sorry, but the Store hack is Lesane's and he is providing all support for it. I do not want to confuse people by including it with this hack. The reason why most people want the integration is because they already have Lesane's Store hack installed on their forums.

As far as add-ons go, there is only one add-on right now (I think) and that is the member profile add-on. Since this add-on is only one file edit, I do not believe it is necessary to give users the option during the install. It seems much simpler and easier for those who want to use it to just hack the one file.

DarkDraco07
01-11-2003, 10:34 PM
for people that have stupid members that are to stupid to read a post you made about how to use the battle hack. you might want to make a .html page like i did

http://www.darknemesis.com/forums/battle.htm

saint_seiya
01-12-2003, 12:07 AM
I got a question. Can I install it now, will i be able to upgrade later? Got not ime to read 40 pages so someone update me :) My forums are active and i dont want to mess them up.

Bitsys
01-12-2003, 12:38 AM
Originally posted by saint_seiya
I got a question. Can I install it now, will i be able to upgrade later? Got not ime to read 40 pages so someone update me :) My forums are active and i dont want to mess them up.

I am very close to releasing a final version, which I would suggest waiting for. However, if you still cannot wait for it, then at least wait for the next update, which I should be releasing tonight. I am providing upgrade instructions, though.

Xyphen
01-12-2003, 01:14 AM
Bitsys, I upgraded to v.59, and users are complaing that there stats isn't changing? And It isn't.. it has been the same since I upgraded..

Xyphen
01-12-2003, 01:16 AM
Also Bitsys, it sounds like when you realse the final version there won't be no upgrade? If there is no upgrade then can you please make a uninstall file for us all? I want to uninstall the old version, remove all the files, do a fresh install.. If you can do that, that will be great!!

DarkDraco07
01-12-2003, 01:45 AM
AViO 07
he is typing the post for the next version right now. btw just because its a final version doesnt mean there wont be updates. there will always be bugs waiting to be squashed in every hack

Xyphen
01-12-2003, 01:58 AM
I didn't say there won't be updates, I said, it sounds like he won't have an upgrade -_- that means, we won't be able to upgrade from beta to final.. anywayz He is realsing the final version, or still beta?

Bitsys
01-12-2003, 02:16 AM
Version 0.60 is done. Upgrade instructions are included (no script this time). Re-download the .zip file from the first post to get the new version (upgrade instructions are in the "upgrade" directory). NOTE ABOUT UPGRADING: This upgrade is VERY tricky. Parts of it you may or may not have to do, depending on which fixes you already applied - the upgrade will tell you which ones you need to look out for. Please pay attention. Most of the upgrading is doing "REPLACE"s, but there is ONE "ADD BEFORE", so pay attention. Also, there is one file edit where you must "FIND" and "REPLACE" the same thing twice in the same file (showthread.php). Please pay attention!

Bug Fixes:

Fixed battle confirmation PM broken link.
Fixed battle anger giving plus to MA instead of plus to AP.
Fixed incorrect alt text for genders
Other minor bugs


New feature:
In the Itemshop Options menu, there is now a yes or no radio button that you can use to select whether or not you want to use Lesane's Store hack for the points/money system of the RPG.

If you select "No":

User's RPG money will be stored in the Itemshop Bank and a custom user profile field. The amount in their bank account is referred to as their bank money. The amount in their profile field is referred to as thei money-in-pocket or cash. The total amount in their bank account and pocket determines their total money for the RPG.
You can display the amount of money in the user's bank account, pocket, and total amount in the postbit using the standard variables listed in install.txt and the help documentation.
All other aspects of the Itemshop and money system will remain the same as before.

If you select "Yes":

The Itemshop bank will no longer work.
The Mass Points function in the admin cp will no longer work.
The Moderator add/subtract points/bank add-on will no longer work.
Itemshop Activity points will no longer work (the Store Hack has a MUCH more useful feature for doing this)
The "Donate" link in the postbit should still work.
Battle wagers, itemshop purchases, healing, donations, and anything else that has to do with money will be handled through the Store Hack's money system. The Store Hack utilizes a field in the `user` table called 'storep' to store the amount of money a user has for the store.
You can edit the amount of money a user has in the Store Hack in the "Edit Users" link under the "RPG" heading in the admin cp. This field takes the place of the "Cash" and "Bank" fields that were there previously.


Also, just because some of those features won't work, that doesn't mean you should get php/mysql error messages. You may, however, get some messages I put in there saying what will or will not work.

In the Itemshop Options menu, if you select to use the Store Hack's monetary system yet you do not have the Store Hack installed, then you will get an error.

NOTE: I have never installed Lesane's Store Hack and my Hack on the same board at the same time. The way I tested this hack was that I added a new field in the `user` table called 'storep'. Then, I tested it from there. It is possible that there are file edits that may conflict with one another. This is a small chance, but it is there. I will be doing more testing in the future, but as of right now, I do not think installing both of them will break anything. As always, however, install on a production board at your own risk.

Member Profile Add-on
Re-apply the add-on. Just delete the old code you inserted and re-insert the new code from the .zip file.

Fresh Install
For those of you who are still installing each version on a new test board, please re-read the install file. It has changed quite drastically as well. There are several steps taken out.

As always, post bug reports or any errors you are having so that I can fix them :)

Mijae
01-12-2003, 03:01 AM
I just upgraded and so far its going good, but I noticed the "Not in Battle" is not a link anymore? Did you remove it or did I mess something on my board?

Bitsys
01-12-2003, 03:53 AM
Originally posted by v0id
I just upgraded and so far its going good, but I noticed the "Not in Battle" is not a link anymore? Did you remove it or did I mess something on my board?

It won't be a link if:

You are in battle. Since you are in battle, you can't battle anyone else and therefore there shouldn't be a link.
The post is your post. Since you can't battle yourself, it doesn't make sense to have a link in your post to battle yourself. So, there won't be a link.


If one of the above is not true and it still isn't giving you a link, then let me know.

Mijae
01-12-2003, 03:57 AM
Oh ok, I didnt know that. I was in battle, thats why it didnt show up. Still working good over here :D

saint_seiya
01-12-2003, 12:10 PM
Cool, i am going to install this hack today, its superb! Good job Bitsys :)

PSI|Dr-X
01-12-2003, 12:14 PM
Cool bytsis im gonna install it right away

PSI|Dr-X
01-12-2003, 12:42 PM
I get an error


When i wanna go to the battle screen

Database error in vBulletin 2.2.6:

Invalid SQL: SELECT ma, hp, pp, ap, maxma, maxhp, maxpp, posts, userid, username, inbattle, alignment, rpgrace, rpggender, element, alignment, rpgclass, rpgtype, xp FROM user WHERE userid='2' OR userid='1' ORDER BY userid ASC
mysql error: Champ 'xp' inconnu dans field list

mysql error number: 1054

Date: Sunday 12th of January 2003 03:37:35 PM
Script: http://localhost/forums1/forums1/battlefight.php?action=confirmbattle&battlekey=01515&battlenumber=1
Referer: http://localhost/forums1/battlefight.php?action=enterbattle&battlenumber=1&battlekey=01515


Another error when i am trying to show a thread

Database error in vBulletin 2.2.6:

Invalid SQL:
SELECT
post.*,post.username AS postusername,post.ipaddress AS ip,user.*,userfield.*,icon.title as icontitle,icon.iconpath,
attachment.attachmentid,attachment.filename,attach ment.visible AS attachmentvisible,attachment.counter,
user.ma AS uma,user.hp AS uhp,user.pp AS upp,user.ap AS uap,
items_options.pointfield,items_options.lesanestore ,battle_options.namefield,battle_options.usepostco unt,battle_options.exprate,battle_options.levelfie ld,battle_options.privacy AS battleprivacy,items_user.*,battle_stats.*,rpg_race .name AS rpgracename,rpg_race.alignment AS rpgalignmentname,rpg_classf.name AS fclassname,
rpg_classf.folder AS fclassfolder,rpg_classm.name AS mclassname,rpg_classm.folder AS mclassfolder,rpg_element.name AS elename
,avatar.avatarpath,NOT ISNULL(customavatar.avatardata) AS hascustomavatar,customavatar.dateline AS avatardateline
FROM post, battle_options, items_options
LEFT JOIN icon ON icon.iconid=post.iconid
LEFT JOIN user ON user.userid=post.userid
LEFT JOIN userfield ON userfield.userid=user.userid
LEFT JOIN items_user ON items_user.userid=user.userid
LEFT JOIN battle_stats ON battle_stats.userid=user.userid
LEFT JOIN rpg_classf ON rpg_classf.id=user.rpgclass
LEFT JOIN rpg_classm ON rpg_classm.id=user.rpgclass
LEFT JOIN rpg_element ON rpg_element.elementid=user.element
LEFT JOIN rpg_race ON rpg_race.raceid=user.rpgrace AND rpg_race.alignmentid=user.alignment
LEFT JOIN avatar ON avatar.avatarid=user.avatarid
LEFT JOIN customavatar ON customavatar.userid=user.userid
LEFT JOIN attachment ON attachment.attachmentid=post.attachmentid
WHERE post.postid IN (0,740,741,742,744,747,750,752,754,760)
ORDER BY dateline

mysql error: Champ 'items_options.lesanestore' inconnu dans field list

mysql error number: 1054

Date: Sunday 12th of January 2003 03:46:45 PM
Script: http://localhost/forums1/forums1/showthread.php?postid=760#post760
Referer: http://localhost/forums1/index.php?

Please can you make an simple uninstall i really need one :disappointed:



$level = getlevel($post[xp], $post[exprate], 1);

something there is wrong or like that




FORGET IT :smoke: i unedited everything :lick:

(Note to myself ALWAYS BACKUP when installing a big hack)

saint_seiya
01-12-2003, 01:17 PM
When i go to showthread:

mysql error: Not unique table/alias: 'icon'

PSI|Dr-X
01-12-2003, 02:16 PM
It's better to uninstall it saint cuz i got lot of mysql errors as well

just have an backup or the old version then un edit everything

saint_seiya
01-12-2003, 02:35 PM
LOL, if i just made a back up ;)

But I partially uninstalled it, yeah. I am trying to install it on 2.2.9 test board to see how it goes. If it goes well iw ill just install a new board and screw all the posts, i want battles ;)

Bitsys
01-12-2003, 02:52 PM
PSI|Dr-X:
It looks like you didn't run the necessary queries. Do you have phpmyadmin? It looks like the 'xp' field is missing from your `user` table. Also, you are missing the 'lesanestore' field from the `items_options` table. These two fields have the following properties:

xp int(11) not null default '0'

lesanestore tinyint(3) not null default '0'

saint_seiya:
Can you post the full error message?

saint_seiya
01-12-2003, 02:56 PM
=/ Hold on

PSI|Dr-X
01-12-2003, 03:05 PM
Bytsis

is

xp int(11) not null default '0'

suppose to come in the new version cuz else
you didint type in it only lesane's (but that one was over cuz i had run that querie on the wrong database :P)

Bitsys
01-12-2003, 03:07 PM
Originally posted by PSI|Dr-X
Bytsis

is

xp int(11) not null default '0'

suppose to come in the new version cuz else
you didint type in it only lesane's (but that one was over cuz i had run that querie on the wrong database :P)

It was in the upgrade script going from version 0.58 to 0.59.

PSI|Dr-X
01-12-2003, 04:25 PM
i think i didint upgrade :d

Bitsys
01-12-2003, 05:10 PM
Originally posted by PSI|Dr-X
i think i didint upgrade :d

I think that may have been the problem.

Issy_X
01-12-2003, 05:41 PM
Hi, I installed the latest version of you hack and I have some problems.
[list=1] The scoreboard is acting wierd, when someone wins a battle it shows up on the scoreboard as lost, and when someone lost a battle it shows up as won. I set minimum levels for items in the itemshop, but it's not working correctly. I have items for level 1 and level 2. If I am a level 2 character, the link for buying the items is showing up correctly, but when I try to buy a level 2 item it's just refreshing the page, not buying the item. But I can buy a level 1 item. Same as I am level 3, I can buy level 1 and 2 items, but level 3 items are not working. The bank is not working, when I click the bank it's refreshing the page and nothing more. users are gaining a massive amount of extra hp when leveling up. A level 1 character had about 35 hp and a level 2 character about 125.[/list=1]

I hope you can help me with these problems. Thanks in advance.

rrnolan
01-12-2003, 05:42 PM
Bitsy, I am the forum admin for my site and because of the number of posts i have my hit power is 3300, how can I turn my hit power down? Everytime I fight someone I kill them with one hit.

Also is there a way to cap my hitting power

mr e
01-12-2003, 06:20 PM
this is how you determine your attack

$uregatt = $userlevel * $userstats[classregatt] * $userstats[raceregatt];


so just lower the classes attack or the races regular attack and you'll do less

Bitsys
01-12-2003, 06:46 PM
Issy_X:
1. Thanks for finding that one. It will be fixed in the next version.
2. That bug has been reported and will be fixed in the next version.
3. In the Itemshop Options menu, did you choose to use Lesane's Store hack for money/points? If not, what are your itemshop options set to?
4. Still looking in to that one.

rrnolan:
Open battleupdate.php, find:
$damagedone = floor(($weapon[damage] + $regattbonus) * $uelemod * $anger + $bonusattack - $armor - $regdefminus);
After, it, add:
if($damagedone > X) {
$damagedone = Y;
}
Replace X with the amount you don't want it to go over, and replace Y with the amount you want it to be if it goes over. If you only want it to apply to you, then add the following instead:
if($damagedone > X && $bbuserinfo[userid] == Z) {
$damagedone = Y;
}Replace Z with your userid and X/Y with the previous values as mentioned above.

I am still working on the formulas some more.

SpyGuy007
01-12-2003, 11:01 PM
There's an error when using vbhacker...the changes made to showthread.php make it so that all user's info that is displayed in the postbit shows them as "guest", having no registration date, and having no post count, yet their other profile fields remain intact, and they really don't have guest status (ex. viewing their profile shows the correct info)

saint_seiya
01-12-2003, 11:11 PM
Database error in vBulletin 2.2.8:

Invalid SQL:
SELECT
post.*,post.username AS postusername,post.ipaddress AS ip,user.*,userfield.*,icon.title as icontitle,icon.iconpath,
attachment.attachmentid,attachment.filename,attach ment.visible AS attachmentvisible,attachment.counter,
user.ma AS uma,user.hp AS uhp,user.pp AS upp,user.ap AS uap,items_options.pointfield,items_options.lesanes tore,battle_options.namefield,battle_options.expra te,battle_options.privacy AS battleprivacy,items_user.*,battle_stats.*,rpg_race .name AS rpgracename,rpg_race.alignment AS rpgalignmentname,rpg_classf.name AS fclassname,
rpg_classf.folder AS fclassfolder,rpg_classm.name AS mclassname,rpg_classm.folder AS mclassfolder,rpg_element.name AS elename
,avatar.avatarpath,NOT ISNULL(customavatar.avatardata) AS hascustomavatar,customavatar.dateline AS avatardateline
FROM post
LEFT JOIN icon ON icon.iconid=post.iconid
LEFT JOIN user ON user.userid=post.userid
LEFT JOIN userfield ON userfield.userid=user.userid
LEFT JOIN avatar ON avatar.avatarid=user.avatarid
LEFT JOIN customavatar ON customavatar.userid=user.userid
LEFT JOIN attachment ON attachment.attachmentid=post.attachmentid
WHERE post.postid IN (0,29283,29287,29303,29305,29306,29307,29314,29316 )
ORDER BY dateline

mysql error: Unknown table 'items_options' in field list

mysql error number: 1109

Date: Sunday 12th of January 2003 07:02:36 PM
Script: http://www.vgcity.com/forum/forum/showthread.php?threadid=1147
Referer:

Bitsys
01-12-2003, 11:25 PM
Originally posted by saint_seiya
Database error in vBulletin 2.2.8:

Invalid SQL:
SELECT
post.*,post.username AS postusername,post.ipaddress AS ip,user.*,userfield.*,icon.title as icontitle,icon.iconpath,
attachment.attachmentid,attachment.filename,attach ment.visible AS attachmentvisible,attachment.counter,
user.ma AS uma,user.hp AS uhp,user.pp AS upp,user.ap AS uap,items_options.pointfield,items_options.lesanes tore,battle_options.namefield,battle_options.expra te,battle_options.privacy AS battleprivacy,items_user.*,battle_stats.*,rpg_race .name AS rpgracename,rpg_race.alignment AS rpgalignmentname,rpg_classf.name AS fclassname,
rpg_classf.folder AS fclassfolder,rpg_classm.name AS mclassname,rpg_classm.folder AS mclassfolder,rpg_element.name AS elename
,avatar.avatarpath,NOT ISNULL(customavatar.avatardata) AS hascustomavatar,customavatar.dateline AS avatardateline
FROM post
LEFT JOIN icon ON icon.iconid=post.iconid
LEFT JOIN user ON user.userid=post.userid
LEFT JOIN userfield ON userfield.userid=user.userid
LEFT JOIN avatar ON avatar.avatarid=user.avatarid
LEFT JOIN customavatar ON customavatar.userid=user.userid
LEFT JOIN attachment ON attachment.attachmentid=post.attachmentid
WHERE post.postid IN (0,29283,29287,29303,29305,29306,29307,29314,29316 )
ORDER BY dateline

mysql error: Unknown table 'items_options' in field list

mysql error number: 1109

Date: Sunday 12th of January 2003 07:02:36 PM
Script: http://www.vgcity.com/forum/forum/showthread.php?threadid=1147
Referer:

Some of the necessary file edits were not done during the vbhacker part of the installation. Did you get any errors during the install using vbhacker? Also, read below on how to make sure all of the file edits were done.

SpyGuy007:
Can you verify that all of the necessary file edits were made to showthread.php? To verify the edits, have vbhacker generate a text file of the hack. From there, look at all of the edits to showthread.php (they should be at the top) and make sure that they were done. In some instances, the edits were supposed to have executed twice (once for each instance of the code in showthread.php).

saint_seiya
01-12-2003, 11:52 PM
Oh man, this is a pain in the ass, i think the auto installer misses a lot of files during the install of it isnce there are some other mods installed =|

SpyGuy007
01-12-2003, 11:56 PM
Bitsys, I checked the edits that were supposed to be made to showthread.php and I did them exactly as they were written, but the error still comes up. If you look closely, there are two snippets of code that are to be replaced in the install that are the exact same, but are to be replaced with two different things.

Bitsys
01-13-2003, 12:14 AM
Originally posted by saint_seiya
Oh man, this is a pain in the ass, i think the auto installer misses a lot of files during the install of it isnce there are some other mods installed =|

Yeah, unfortunately the auto-installed can't be perfect when there are other hacks installed. However, IMO, it still beats doing everything manually. Can you post which code did not insert properly?

Originally posted by SpyGuy007
Bitsys, I checked the edits that were supposed to be made to showthread.php and I did them exactly as they were written, but the error still comes up. If you look closely, there are two snippets of code that are to be replaced in the install that are the exact same, but are to be replaced with two different things.

Which snippets of code are identical? I don't see it...

Maybe you are referring to
FROM post
".iif($forum[allowicons],'LEFT JOIN icon ON icon.iconid=post.iconid','')."
LEFT JOIN user ON user.userid=post.userid
LEFT JOIN userfield ON userfield.userid=user.userid
If so, then you should note that the first instance of this snippet in showthread.php is tabbed to the right. Whereas the second instance of this code is NOT tabbed to the right. Since the code to be found is also not tabbed, it will only work on the second instance, and not the first.

saint_seiya
01-13-2003, 01:18 AM
What's your aim bytsis

DFX
01-13-2003, 02:34 AM
Just installed, For some reason nothing is showing up in the drop down boxes in User CP Profile. The boxes are there, but empty. Am I missing something?

Bitsys
01-13-2003, 02:46 AM
Originally posted by DFX
Just installed, For some reason nothing is showing up in the drop down boxes in User CP Profile. The boxes are there, but empty. Am I missing something?

Did you run "install_itemshop_items.php" AND "install_rpg_stuff.php"?

Also, did you get any database errors when using vbhacker?

DFX
01-13-2003, 02:51 AM
Everything went along fine. I had to manually edit member.php though. No errors that I noticed and the 2 scripts you just said were linked to automatically from vbhackers install if i'm not mistaken. Either way the items, classes, etc etc are there.

This is what I see

DFX
01-13-2003, 03:13 AM
Nevermind, It was a problem with member.php. I hacked the file manually and it works fine now. Thanks.

Issy_X
01-13-2003, 10:43 AM
Originally posted by Bitsys
Issy_X:
1. Thanks for finding that one. It will be fixed in the next version.
2. That bug has been reported and will be fixed in the next version.
3. In the Itemshop Options menu, did you choose to use Lesane's Store hack for money/points? If not, what are your itemshop options set to?
4. Still looking in to that one.


Oops, sorry. I'm using the store hack money system. And about number 4, I found out that when someone levels up, al his stats are increasing a lot. Like almost 7 times stronger. I don't think that is correct. And I also have a question about spells and MA. I don't know how I can make a spell use MA, a spell is always using 0 MA. How can I change this?

Bitsys
01-13-2003, 01:15 PM
Originally posted by Issy_X


Oops, sorry. I'm using the store hack money system. And about number 4, I found out that when someone levels up, al his stats are increasing a lot. Like almost 7 times stronger. I don't think that is correct. And I also have a question about spells and MA. I don't know how I can make a spell use MA, a spell is always using 0 MA. How can I change this?

That's another bug I am working out. ;)

PSI|Dr-X
01-13-2003, 01:20 PM
Heh

It think all to people who are gonna install 0.60 don't install it lately i have lot of mysql errors

so its better to stick on 0.59

That my suggestion :)

Bitsys
01-13-2003, 04:50 PM
Originally posted by PSI|Dr-X
Heh

It think all to people who are gonna install 0.60 don't install it lately i have lot of mysql errors

so its better to stick on 0.59

That my suggestion :)

What errors are you getting?

PSI|Dr-X
01-13-2003, 06:38 PM
Lol strange errors that i've fixed

That errors where comming cuz i updated from 58 to 60 forgetting 59 now its al good again no probs

VeoMorphine
01-13-2003, 10:57 PM
im gona wait till final. I wanna run it live on my board.

Kurayami
01-13-2003, 11:04 PM
Excellent hack, Bitsys. My members are loving it. :)

I just have one odd error that seems to have popped up--whenever a newly registered member posts, their information in the postbit always shows up as "Guest", "Not Joined Yet", etc.
It doesn't happen with any of the members that signed up before the hack was implemented, their information all shows up perfectly fine. I'm guessing it's some sort of problem with showthread.php, because their profile information shows up perfectly fine... do you have any idea of what could be wrong?

Xyphen
01-13-2003, 11:09 PM
Just Installed v.60 works perfectly fine on vb2.2.8! Awesome work Bistsy, btw, i don't see any changes, but u listed a whole lot of changes.. maybe they are just php changes, rofl

DFX
01-14-2003, 12:07 AM
Problem. Users cannot use weapons even though they've purchased them.

Bitsys
01-14-2003, 12:25 AM
Originally posted by Kurayami
I just have one odd error that seems to have popped up--whenever a newly registered member posts, their information in the postbit always shows up as "Guest", "Not Joined Yet", etc.
It doesn't happen with any of the members that signed up before the hack was implemented, their information all shows up perfectly fine. I'm guessing it's some sort of problem with showthread.php, because their profile information shows up perfectly fine... do you have any idea of what could be wrong?

Thanks, I don't know the source of that error, but I will be looking in to it.


DFX:
Did you read https://vborg.vbsupport.ru/showthread.php?postid=329014#post329014 yet?

DFX
01-14-2003, 12:35 AM
That did the trick, Thanks again Blitsy. Just one more question, Where are the spells? Do I add them manually or am I missing something?

Bitsys
01-14-2003, 12:38 AM
Originally posted by DFX
That did the trick, Thanks again Blitsy. Just one more question, Where are the spells? Do I add them manually or am I missing something?

Just add a new category and call it spells. From there, add new items to that category.

DFX
01-14-2003, 01:00 AM
Got it, I'm almost positive I saw someone else have a problem with this. Just went through 40+ pages real quickskimming them and could not find it. If I try to battle someone with a ' in their name it gives me a DB error.

Bitsys
01-14-2003, 01:36 AM
Originally posted by DFX
Got it, I'm almost positive I saw someone else have a problem with this. Just went through 40+ pages real quickskimming them and could not find it. If I try to battle someone with a ' in their name it gives me a DB error.

Hmm...I will look in to that one.



If anyone is having problems with the member profile add-on, try this file version instead:

mr e
01-14-2003, 02:32 AM
6. have you ever give thought to just putting checkboxes next to spells to label them as healing hp, mp, or both and just pulling those values from the db when you use them and check what it does instead of having all these confusing number values? just thought that might make it a little easier

Bitsys
01-14-2003, 11:23 AM
Originally posted by mr e
6. have you ever give thought to just putting checkboxes next to spells to label them as healing hp, mp, or both and just pulling those values from the db when you use them and check what it does instead of having all these confusing number values? just thought that might make it a little easier

Yes. The problem is that all items are stored the same way. It seems a waste of database space to only be using those extra fields if the items are spells. Otherwise, they wouldn't be used.

Mrpolish
01-14-2003, 08:31 PM
I have a suggestion:

The healing prices should be editable from the adminCp becuz some of my users complained about it (not that i care) but it would be a great addon from what i think.

DFX
01-14-2003, 09:22 PM
I've seen a few times that if someone retreats they get full money for the battle while the other person who did not retreat gets nothing.

Bitsys
01-14-2003, 10:33 PM
Originally posted by Mrpolish
I have a suggestion:

The healing prices should be editable from the adminCp becuz some of my users complained about it (not that i care) but it would be a great addon from what i think.

Working on it.

Originally posted by DFX
I've seen a few times that if someone retreats they get full money for the battle while the other person who did not retreat gets nothing.

Thanks, will be fixed in the next version.

[D]Vincent
01-14-2003, 10:41 PM
omfg =\ J2K is a homo. Don't listen to him. He always trys to impersonate me =\

Mijae
01-14-2003, 11:53 PM
Bitsys, seems like you didnt fix one of the big bugs :P

Whenever my members win they get one lose and viceversa.

Oh yes, and the database with the ' still isnt working.

Bitsys
01-15-2003, 01:48 AM
Originally posted by v0id
Bitsys, seems like you didnt fix one of the big bugs :P

Whenever my members win they get one lose and viceversa.

Oh yes, and the database with the ' still isnt working.

Win/lose will be fixed in the next version.

Could you give more details on the ' problem? I am unable to reproduce it.

saint_seiya
01-15-2003, 01:56 AM
In next version you should make free healing an option =/

saint_seiya
01-15-2003, 01:57 AM
btw, can you help make healing free now, i thought i would change the mutliplication in heal.php to 0 but it makes cost 0 and it doesnt increase any hp either =/

Bitsys
01-15-2003, 02:26 AM
Originally posted by saint_seiya
In next version you should make free healing an option =/

You will be able to do this in the next version.

Mijae
01-15-2003, 02:50 AM
Bitsys: in a battle's name, type something and include the ' character, and it should return you a database error when you try to setup the battle or battle.

Bitsys
01-15-2003, 02:52 AM
Originally posted by v0id
Bitsys: in a battle's name, type something and include the ' character, and it should return you a database error when you try to setup the battle or battle.

Oooohhh, in the battle name. I thought you said the opponent name. I will look in to that one. Thanks.

EDIT: Just tested it and I didn't get an error. Maybe I already fixed this in my version (the next version). Anyhow, if you notice this error in the next version, then let me know and I will try to look at it closer.

Graphics
01-15-2003, 09:01 AM
coud you make it possible that there is free healing BUT it takes like 8 hours or so :D

Mijae
01-15-2003, 03:10 PM
Originally posted by Graphics
coud you make it possible that there is free healing BUT it takes like 8 hours or so :D

Something like an inn? Maybe with the ability to get different rooms for different prices, and the higher the price the faster the healing, and one room should be free but take a long time to heal.

Bitsys
01-15-2003, 04:44 PM
Originally posted by Kurayami
Excellent hack, Bitsys. My members are loving it. :)

I just have one odd error that seems to have popped up--whenever a newly registered member posts, their information in the postbit always shows up as "Guest", "Not Joined Yet", etc.
It doesn't happen with any of the members that signed up before the hack was implemented, their information all shows up perfectly fine. I'm guessing it's some sort of problem with showthread.php, because their profile information shows up perfectly fine... do you have any idea of what could be wrong?

Found the source of that error. To fix it, download the attached file, upload it to your admin directory, and execute it. Let me know what it says after you do this. No matter what, this file should not adversely affect your database. The reason you are getting this error is because some of the necessary database queries in install_itemshop_items.php were not executed.


Graphics and v0id:
That sounds like a good idea. However, I don't think I have enough time to test and implement it. Maybe someone could make an add-on.

jeremy
01-15-2003, 05:32 PM
Thanks for your great work.

I have two suggestions about hit damage and bank.

1.hit damage

if you can change the hit damage from a fix number to a

range,the hack will be more perfect.

EX.
200 damage change to 150~250 damage

the change will make the battle more exciting.

My members always say "i am lost" after the first hit.

That`s why i have the suggestion.

2.the bank

I installed the store hack,and i know the bank will not work anymore.
can you fix the problem and make the bank work again.

thanks again.

Bitsys
01-15-2003, 05:59 PM
Originally posted by jeremy
Thanks for your great work.

I have two suggestions about hit damage and bank.

1.hit damage

if you can change the hit damage from a fix number to a

range,the hack will be more perfect.

EX.
200 damage change to 150~250 damage

the change will make the battle more exciting.

My members always say "i am lost" after the first hit.

That`s why i have the suggestion.

2.the bank

I installed the store hack,and i know the bank will not work anymore.
can you fix the problem and make the bank work again.

thanks again.

Good suggestion.

Could you please explain a little more about the bank? I am not quite sure as to what the problem is.

Kurayami
01-15-2003, 08:09 PM
Originally posted by Bitsys


Found the source of that error. To fix it, download the attached file, upload it to your admin directory, and execute it. Let me know what it says after you do this. No matter what, this file should not adversely affect your database. The reason you are getting this error is because some of the necessary database queries in install_itemshop_items.php were not executed.


Graphics and v0id:
That sounds like a good idea. However, I don't think I have enough time to test and implement it. Maybe someone could make an add-on.

Worked like a charm, the information is showing up correctly now. Thanks! :)

jeremy
01-16-2003, 12:32 AM
Originally posted by Bitsys


Good suggestion.

Could you please explain a little more about the bank? I am not quite sure as to what the problem is.

===================================
In the New feature of 0.60:
In the Itemshop Options menu, there is now a yes or no radio button that you can use to select whether or not you want to use Lesane's Store hack for the points/money system of the RPG.

If you select "No":

User's RPG money will be stored in the Itemshop Bank and a custom user profile .....

If you select "Yes":

The Itemshop bank will no longer work.
===================================

I select "yes" and the Itemshop bank no longer work.But my
members save a lot of money in the Itemshop bank.How do I
move the money from the bank to the store money?

Or can you open the bank service when i select "yes"?
:)

Bitsys
01-16-2003, 12:38 AM
Originally posted by jeremy
I select "yes" and the Itemshop bank no longer work.But my
members save a lot of money in the Itemshop bank.How do I
move the money from the bank to the store money?

Or can you open the bank service when i select "yes"?
:)

If all you want is a one-time script that converts all bank money into lesane's store points, then I can make one for you real quick. Let me know if this is what you need.

SpyGuy007
01-16-2003, 01:37 AM
I definitely need it!

Oh, and jeremy, there is a bank hack for Lesane's Store hack. As far as I know, it should work along with this hack.

jeremy
01-16-2003, 03:25 AM
Yes,a one-time script will solve my problem.

And I need it.

thank SpyGuy007 & Bitsys :)

heretic
01-17-2003, 11:46 AM
Ok, I'm going to try and install this over the weekend, and I have a few questions:

1) how stable is .60, is it close enough to where I can install it on the test board and *should* expect minimal issues? I'm referring to the database fix on the previous page, was that added to the release?

2) The win/loss issue, I didn't see if there was a resolution.

3) this is a vbhacker release only? no manual file as well?

I figure I'll find out a few answers before you get a chance to reply, wish me luck :)

Bitsys
01-17-2003, 01:31 PM
SpyGuy007 and jeremy:

The script for converting bank money and money in pocket to Lesane's Store Points at a one to one ratio is attached to this post. Upload the file to your admin directoy and execute it. The script will go through each user and convert the money. Make sure you don't run the script more than once. If you do, then user's will get twice as much money as they are supposed to get, since each time you run it it converts the Itemshop money into Lesane's Points without subtracting from the Itemshop money.

heretic:

1) Version 0.60 is a lot more stable than the other version. However, there is always the possibility that you will get errors. On a test board, the install is usually flawless. I am not sure as to which database fix you are referring to. However, the fix I posted for Kurayami will be in the next version, just in case something goes wrong during the installation. I hope to release version 0.61 today, so it might be better if you wait for that version.

2) No resolution yet. The fix will be in the next version.

3) You have two options: (1) Let vbhacker do all of the hacking or (2) Let vbhacker make a text file that tells you how to install the hack manually. To generate the text file using vbhacker, from the main page click on the hack you want to install and at the bottom select "Generate a text file" instead of "Install". Then click continue.

heretic
01-17-2003, 05:37 PM
Bitsys, I did everything, and added the postbit sample, as well as the showthread edit, however I'm getting this when viewing threads, must be somewhere in the showthread.php file:


Database error in vBulletin 2.2.9:

Invalid SQL:
SELECT
post.*,post.username AS postusername,post.ipaddress AS ip,user.*,userfield.*,icon.title as icontitle,icon.iconpath,
attachment.attachmentid,attachment.filename,attach ment.visible AS attachmentvisible,attachment.counter
,avatar.avatarpath,NOT ISNULL(customavatar.avatardata) AS hascustomavatar,customavatar.dateline AS avatardateline
FROM post
LEFT JOIN icon ON icon.iconid=post.iconid
LEFT JOIN user ON user.userid=post.userid
LEFT JOIN userfield ON userfield.userid=user.userid
, battle_options, items_options LEFT JOIN icon ON icon.iconid=post.iconid
LEFT JOIN user ON user.userid=post.userid
LEFT JOIN userfield ON userfield.userid=user.userid
LEFT JOIN items_user ON items_user.userid=user.userid
LEFT JOIN battle_stats ON battle_stats.userid=user.userid
LEFT JOIN rpg_classf ON rpg_classf.id=user.rpgclass
LEFT JOIN rpg_classm ON rpg_classm.id=user.rpgclass
LEFT JOIN rpg_element ON rpg_element.elementid=user.element
LEFT JOIN rpg_race ON rpg_race.raceid=user.rpgrace AND rpg_race.alignmentid=user.alignment
LEFT JOIN avatar ON avatar.avatarid=user.avatarid
LEFT JOIN customavatar ON customavatar.userid=user.userid
LEFT JOIN attachment ON attachment.attachmentid=post.attachmentid
WHERE post.postid IN (0,1,2)
ORDER BY dateline

mysql error: Not unique table/alias: 'icon'

mysql error number: 1066

Date: Friday 17th of January 2003 02:21:13 PM
Script: http://www.the-rift.net/dev/dev/showthread.php?threadid=1
Referer: http://www.the-rift.net/dev/forumdisplay.php?forumid=2

Bitsys
01-17-2003, 05:57 PM
Originally posted by heretic
Bitsys, I did everything, and added the postbit sample, as well as the showthread edit, however I'm getting this when viewing threads, must be somewhere in the showthread.php file:



In one of the showthread edits, you must find and add the same piece of code twice. Go through showthread.php and find the code twice and add it once per instance. If you used vbhacker, did you get any errors?

heretic
01-17-2003, 05:57 PM
only chmod errors. I did the part about it being twice..I'll check a 3rd time

Bitsys, I'm on AOL while at work, S/N is "a rabid lemur"

heretic
01-17-2003, 06:19 PM
ok, I found that this


attachment.attachmentid,attachment.filename,attach ment.visible AS attachmentvisible,attachment.counter,


had not been changed twice to this


user.ma AS uma,user.hp AS uhp,user.pp AS upp,user.ap AS uap,items_options.pointfield,items_options.lesanes tore,battle_options.namefield,battle_options.expra te,battle_options.privacy AS battleprivacy,items_user.*,battle_stats.*,rpg_race .name AS rpgracename,rpg_race.alignment AS rpgalignmentname,rpg_classf.name AS fclassname,
rpg_classf.folder AS fclassfolder,rpg_classm.name AS mclassname,rpg_classm.folder AS mclassfolder,rpg_element.name AS elename



hopefully this'll work

Bitsys
01-17-2003, 07:58 PM
Version 0.61 is done, see the first post for the new .zip file. It has some interesting changes. The upgrade instructions are included in the .zip file and are located in the "upgrade" directory.

New features:

Battle formulas have changed. When using your fists, you do less damage than before, and there is a random factor added that is plus or minus 15% of the total damage. When using a weapon, there is now a plus or minus 25% damage factored in.
Attack Spells now cost a minimum of 5 MA to cast.
Healing Spells now cost 0.1 MA per HP healed (amount healed is determined by the buff of the item).
You can now update all users' stats at one time from the admin control panel. You can also update one user's stats from the edit users menu. NOTE: If you have changed the update stats code in member.php, then you must also change the update stats code in rpgadmin.php in the same way, or else you could get unexpected results.
You can now adjust how much it costs to heal per HP and per MA. Setting this to 0 will make healing free.
You can now set how much HP, MA, and PP users get per level. Before, the amount per level of HP was 75, I would recommend setting it to somewhere between 20 and 50. Please experiement with this to determine the best number for your board.
The itemshop now won't let you buy a weapons if you already own it.


There may have been some more small things that I forgot to mention. You may or may not notice them.

Bugs fixed (I hope):

Winners and losers of battle should now get the correct win/loss status as well as the wager if they won.
When cancelling/declining a battle, users are now refunded their money and are not given credit for a battle.
The links in the postbit that generate a pop-up will no longer scroll to the top of the page before displaying. If you have the links in your postbit already, then open the sample potbit text file and copy and paste just the links with javascript in them.
Fixed the level 1 users could not buy itemshop items that were at level 1 or 0 bug.
Some other minor bugs.



As always, let me know if you find any bugs. :)

vdinh
01-17-2003, 10:51 PM
Hi Bitsys,
Do I still need to apply the Member Profile Add-on for v.61 ? :)

Bitsys
01-18-2003, 12:59 AM
Originally posted by vdinh
Hi Bitsys,
Do I still need to apply the Member Profile Add-on for v.61 ? :)

The installation script does not install the Member Profile Add-on, so yes, if you have not already done so, then you need to re-apply the Member Profile Add-on. This assumes that you are doing a fresh install.

rrnolan
01-18-2003, 01:55 AM
I downloaded the 61 version and am running at present running ver 55b do I just need to run the upgrade for or do I need you to send me the interm files?

Bitsys
01-18-2003, 02:46 AM
Originally posted by rrnolan
I downloaded the 61 version and am running at present running ver 55b do I just need to run the upgrade for or do I need you to send me the interm files?

I am not sure. The upgrade file has all of the upgrade instructions I have ever posted, except for the necessary queries. I think it is 6 one way and half a dozen the other as far as upgrading or un-installing/re-installing. To make it go smoother, I would suggest uninstalling and re-installing.

Mijae
01-18-2003, 05:23 AM
You can now update all users' stats at one time from the admin control panel. You can also update one user's stats from the edit users menu. NOTE: If you have changed the update stats code in member.php, then you must also change the update stats code in rpgadmin.php in the same way, or else you could get unexpected results.


What do you mean change the update stats code in rpgadmin.php? You mean this code?


$maxhpupdate = ( $level * 75 * $hpmulti) + $hpmodifier;
$maxhpupdate= floor ($maxhpupdate);
$maxmaupdate = $mamodifier + ($jointime * $level) / 5;
$maxmaupdate = floor ($maxmaupdate);
$maxppupdate = $ppmodifier + ($jointime * $level) / 3;
$maxppupdate = floor ($maxppupdate);


???

[D]Vincent
01-18-2003, 09:29 AM
I have a request. I changed this for my friend in the coding so it would work like this.

Could you make a option for the admin to set how the stats add up(my friend wanted class stats + race stats x level = total stats). I edited the files battleupdate battlefight and rpg to work like that but he hasn't uploaded them yet(he's the lazy one, the one that wants it to work like that doesn't have FTP access). So if you added this option my one friend could easily change it to what he wants without hacking required.

rrnolan
01-18-2003, 09:10 PM
Originally posted by Bitsys


The installation script does not install the Member Profile Add-on, so yes, if you have not already done so, then you need to re-apply the Member Profile Add-on. This assumes that you are doing a fresh install.


do I just follow the instructions in the member profile add in .txt file?

Bitsys
01-19-2003, 01:46 AM
v0id:
Although that code is from the old version, it is in the same vicinity of the code I am referring to. The whole update stats code is categorized as the code starting at
if($updatestats) {
and ending at
if($updatedebug == 1)
echo $debugmessage; if ($showbirthdays)
in member.php.

The update stats code in rpgadmin.php is a little different, but contains much of the same code in between what I described above.

Make sure that if you change part of one then you change the same part of the other.


[D]Vincent:
Could you explain exactly what he wants changed?



I have uploaded a new version of the hack. It fixes the spells not working in battle bug. To upgrade, just download the .zip and re-upload battleupdate.php.

Also, rrnolan says that this hack is working fine on v2.2.6, so, I am going to say that this hack works on 2.2.6+ now.

Mijae
01-19-2003, 04:24 AM
What are the current formulas to calculate HP/MP/PP?

I just went from 114 HP back to 84, but my MP/PP jumped 300% even tho I have both set at 1 per level.

Mijae
01-19-2003, 04:36 AM
Originally posted by Bitsys
[B]v0id:
Although that code is from the old version, it is in the same vicinity of the code I am referring to. The whole update stats code is categorized as the code starting at
if($updatestats) {
and ending at
if($updatedebug == 1)
echo $debugmessage; if ($showbirthdays)
in member.php.

The update stats code in rpgadmin.php is a little different, but contains much of the same code in between what I described above.

Make sure that if you change part of one then you change the same part of the other.


Could you tell me exactly what to update? I copied the text from member.php into rpgadmin.php (the one between if($updatestats) and I got an error)

Fatal error: Call to undefined function: updatestats() in /home/virtual/site24/fst/var/www/html/forum/admin/rpgadmin.php on line 449

Areku
01-19-2003, 07:54 AM
Is any1 holding a test, current (.0.61) version of this hack on a test board for us to play a bit with?

rrnolan
01-19-2003, 08:36 AM
<a href="http://www.digigames2.biz" target="_blank">http://www.digigames2.biz </a>

I still need to set the weapons strength but I should have that done some time monday morning they are all set to the default at present.

Bitsy Thanks a million for the Help :classic:

[D]Vincent
01-19-2003, 08:39 AM
Your version of the stats is this:
level x class stat x race stat
He wants it like this:
race stat + class stats x level

+ is plus like when adding and x is times.

so I was suggesting to add an option that allows you to customize that

Bitsys
01-19-2003, 01:08 PM
v0id:
In the new version, the code update stats code in member.php is the same as the code in rpgadmin.php except for some variable differences. You shouldn't have to copy or paste anything. The only time you would have to change it is if you don't like how the stats are updated. In that case, when you change one you have to make sure you change the other in the same way.

[D]Vincent:
If he changes that around, then it may adversely affect the battle formulas and the battle arena may not work properly. That formula also puts less emphasis on the user's race/class and more mephasis on their level. Also, the only way I can think of to add an option that changes the formula in the way he wants is to make a yes or no box. IMO, this would be sort of unnecessary when he can just re-hack the files and re-upload...or did you say he doesn't have FTP access?

vdinh
01-19-2003, 04:07 PM
Hi Bitsys,
I was unable to update user profile with all the element, class, race, etc. settings. Everytime I update my profile and hit the Submit button, it gave me the "thank you" note and go back to the default settings. What do I have to do here?

Also, when I go to Admin CP and try to run the Edit Users option under RPG, I got the error:

Invalid SQL: SELECT field6 FROM userfield WHERE userid='xxx'
mysql error: Unknown column 'field6' in 'field list'

Thanks for your help.

Bitsys
01-19-2003, 11:23 PM
Originally posted by vdinh
Hi Bitsys,
I was unable to update user profile with all the element, class, race, etc. settings. Everytime I update my profile and hit the Submit button, it gave me the "thank you" note and go back to the default settings. What do I have to do here?

Also, when I go to Admin CP and try to run the Edit Users option under RPG, I got the error:

Invalid SQL: SELECT field6 FROM userfield WHERE userid='xxx'
mysql error: Unknown column 'field6' in 'field list'


Thanks for your help.

For the first problem, make sure that the correct file edits were made to member.php. To do this, make vbhacker generate a text file (the option is at the bottom of the first sscreen when you go to vbhacker for the first time). From there, compare the member.php edits with your member.php and make sure that the code is there. If it isn't, then manually do the hacking.

For the other problem, have you read https://vborg.vbsupport.ru/showthread.php?postid=331664#post331664 yet?

Also, there are help documents included in the "extra" folder of the .zip file.

rrnolan
01-20-2003, 12:59 AM
I have 61 installed on my dev site at http://www.digigames2.biz if you want to test it out. I am still tweeking colors and stuff but it is available to test out

[D]Vincent
01-20-2003, 02:20 AM
Only two people have access and there is three admins. The admin in charge of the RPG on the board doesn't have access, one of the admins lets the other admin do all the FTP stuff but he's pretty lazy lol

Anyways. You say that there isn't an un-install script, does that mean that it does all the PHP file changes automatically in the install script? If so do you think you can give some instructions on how to install it manually instead since then people atleast know what to take out when wanting to uninstall it.

Bitsys
01-20-2003, 02:54 AM
Originally posted by [D]Vincent
Anyways. You say that there isn't an un-install script, does that mean that it does all the PHP file changes automatically in the install script? If so do you think you can give some instructions on how to install it manually instead since then people atleast know what to take out when wanting to uninstall it.

For the final version, there will be an un-install script. However, if the install script had trouble doing .php file changes, then the uninstall file will most likely also have trouble. A manual install can be generated by vbhacker. This option is located at the bottom of the starting screen. Just click "Generate a text file" and submit. A text file will be generated containing all of the necessary changes that need to be made.

rrnolan
01-20-2003, 03:59 AM
Bitsy I have 4 questions

1. Here is how I setup my weapon strength defense and Buff
If an item costs
100 then I set attack / buff / defense etc strength to 1
$200 then 2
$2000 then 20

I took two zeros off the end of the cost to determine the attack, defense etc. Is this a good method? are my values to low What do you recommend?

2. I bought a broadsword it shows in my item list but when I go to a battle it doesn't give me an option to use the sword? What am I doing wrong. The check box for use weapon is grayed out.

3. If I mark battles as non private can anyone fight my battle?

4. In the last version when I went to fight it would ask for my password. Now it just takes me into the battle. Is that because I have my battles set to nonprivate or because it uses the bulliten user list now and knows it is me?

VeoMorphine
01-20-2003, 12:03 PM
1. the price does not determin how well somthing works. Buff does.

2. goto your item shop menu in the admin cp. Goto edit items, and edi the whole group. Set its type to what ever the group is(weapons would be one handed or 2 handed weapons.)

3. No, everyone can watch, they just cant fight.

4. The board knows its you.

vdinh
01-20-2003, 12:54 PM
Originally posted by Bitsys


For the first problem, make sure that the correct file edits were made to member.php. To do this, make vbhacker generate a text file (the option is at the bottom of the first sscreen when you go to vbhacker for the first time). From there, compare the member.php edits with your member.php and make sure that the code is there. If it isn't, then manually do the hacking.

For the other problem, have you read https://vborg.vbsupport.ru/showthread.php?postid=331664#post331664 yet?

Also, there are help documents included in the "extra" folder of the .zip file.

You are right on the money :). Thanks a lot, Bitsys :laugh:

rrnolan
01-20-2003, 02:53 PM
Originally posted by VeoMorphine
1. the price does not determin how well somthing works. Buff does.

2. goto your item shop menu in the admin cp. Goto edit items, and edi the whole group. Set its type to what ever the group is(weapons would be one handed or 2 handed weapons.)




1. I know price doesnt determine how much strengh defense / buff / armor things provide, I need to know what the best settings are for battle, I used this forumua and I am wondering if the numbers I set using this formula will be to low.

1. Here is how I setup my weapon strength defense and Buff
If an item costs
100 then I set attack / buff / defense etc strength to 1
$200 then 2
$2000 then 20

I took two zeros off the end of the cost to determine the attack, defense etc. Is this a good method? are my values to low What do you recommend?


2. I imported the item shop file so all the items are set right The problem is I am not getting the option to use them in battle

heretic
01-20-2003, 06:32 PM
I got things up, however it says we don't have a weapon when we do?

I'll try the fix and see if it works

vdinh
01-21-2003, 09:01 PM
I tried to Reset the entire RPG board. However, after hitting the Reset button under RPG, after entering the key and hit the Submit button, it did not reset the board. It just gave me a "Test" word. What should I do?

Xyphen
01-21-2003, 09:40 PM
vdinh, the Reset Feature is not there yet, BSnrub is just planning ahead, loads of ppl want that feature and it will be available in the next version or so i think.. Hope that helped, also BSnrub, i was wondering, whats the difference between version 0.61 and 0.61b?

Bitsys
01-21-2003, 11:09 PM
heretic:
For the not able to use weapons thing, did you read https://vborg.vbsupport.ru/showthread.php?postid=329575#post329575 yet?


vdinh:
AViO 07 is correct. I did not add that feature yet because I did not feel that it was ready. That is one feature that shouldn't have any bugs when I release it.


AViO 07:
When I add an alphabetic suffix to the end of a version (i.e. v0.55b, 0.55c, 0.61b, etc), that means that there were changes made to the .php files, but not the templates, database, or file edits. Since there were only changes made to the uploadable files, all you have to do is re-download the .zip and re-upload the files that changed. In this instance, the only file that changed was battleupdate.php. I fixed a bug in it that wouldn't allow users the chance to use their spells. When they tried to use the spell, they would just get a blank screen.

Mijae
01-22-2003, 02:44 AM
I have a forum where my members can post but the post count does go up, but I had one unconfirmed complaint that the exp was still awarded for the post. If I can confirm I will tell you, but you should still look into this Bitsys :P

rrnolan
01-22-2003, 04:49 AM
This is such a cool hack I just love it..

:banana:

heretic
01-22-2003, 11:40 AM
Originally posted by Bitsys
heretic:
For the not able to use weapons thing, did you read https://vborg.vbsupport.ru/showthread.php?postid=329575#post329575 yet?



I missed that

THANK YOU! :)

VeoMorphine
01-22-2003, 12:10 PM
Originally posted by rrnolan



1. I know price doesnt determine how much strengh defense / buff / armor things provide, I need to know what the best settings are for battle, I used this forumua and I am wondering if the numbers I set using this formula will be to low.

1. Here is how I setup my weapon strength defense and Buff
If an item costs
100 then I set attack / buff / defense etc strength to 1
$200 then 2
$2000 then 20

I took two zeros off the end of the cost to determine the attack, defense etc. Is this a good method? are my values to low What do you recommend?


2. I imported the item shop file so all the items are set right The problem is I am not getting the option to use them in battle

1. Yu can do anything you want there. Its your board. I have mine set up with:
20: 5
100: 10
150: 15

2. Exactly. The imported items art put nto an item type. YOU need to set that!
Go into your admin cp and under Item Shop click "Edit Items"
Your see on the right catogorys like this: Weapons [add items] [edit] [delete]

click [Edit]

on this page go down and find:
Battle Type
This specifies what type of items are in this category.

it'll be set to somthing like non battle. You need to set it to a weapon type.

Xyphen
01-22-2003, 12:15 PM
BSnrub, what I am asking is, did you realse a verison called just 0.61? or was it directly 0.61b? because i know I updated to 0.61 don't know if it was 0.61b, rofl

vdinh
01-22-2003, 03:04 PM
Originally posted by AViO 07
BSnrub, what I am asking is, did you realse a verison called just 0.61? or was it directly 0.61b? because i know I updated to 0.61 don't know if it was 0.61b, rofl

Bitsys did release v0.61, then v0.61b. The difference was the file battleupdate.php. If you already install v0.61, then you only have to reupload that file to replace the old one.

Bitsys
01-22-2003, 04:36 PM
Originally posted by v0id
I have a forum where my members can post but the post count does go up, but I had one unconfirmed complaint that the exp was still awarded for the post. If I can confirm I will tell you, but you should still look into this Bitsys :P

What are your Experience options set to? Are you giving experience to members for posting? Or are they not supposed to be getting any experience at all?


AViO 07:

^^What vdinh said ^^

Sinister112
01-23-2003, 12:11 PM
im having this error when i wanto check a thread

Database error in vBulletin 2.2.8:

Invalid SQL:
SELECT
post.*,post.username AS postusername,post.ipaddress AS ip,user.*,userfield.*,icon.title as icontitle,icon.iconpath,
attachment.attachmentid,attachment.filename,attach ment.visible AS attachmentvisible,attachment.counter
,avatar.avatarpath,NOT ISNULL(customavatar.avatardata) AS hascustomavatar,customavatar.dateline AS avatardateline
FROM post
LEFT JOIN userfield ON userfield.userid=user.userid
LEFT JOIN items_user ON items_user.userid=user.userid
LEFT JOIN battle_stats ON battle_stats.userid=user.userid
LEFT JOIN rpg_classf ON rpg_classf.id=user.rpgclass
LEFT JOIN rpg_classm ON rpg_classm.id=user.rpgclass
LEFT JOIN rpg_element ON rpg_element.elementid=user.element
LEFT JOIN rpg_race ON rpg_race.raceid=user.rpgrace AND rpg_race.alignmentid=user.alignment
LEFT JOIN avatar ON avatar.avatarid=user.avatarid
LEFT JOIN customavatar ON customavatar.userid=user.userid
LEFT JOIN attachment ON attachment.attachmentid=post.attachmentid
WHERE post.postid = ''

mysql error: Unknown table 'user'

mysql error number: 1051

Date: Thursday 23rd of January 2003 07:02:40 AM
Script: http://www.xenonfactor.com/forum/forum/showthread.php?threadid=183
Referer: http://www.xenonfactor.com/forum/forumdisplay.php?forumid=41

can someone help me out with this

Sinister112
01-23-2003, 02:43 PM
bleg great my whole board is ++++ed and my friend didnt make a backup when i asked him to
god ++++ing crap now i have to reinstal. the whole damn board again

PSI|Dr-X
01-23-2003, 02:47 PM
mm give the errors you got maybe somebdy can fix that

PSI|Dr-X
01-23-2003, 02:48 PM
wait

error: Unknown table 'user'

you dont have an table user :) i suppose

Mijae
01-23-2003, 03:27 PM
Originally posted by Sinister112
im having this error when i wanto check a thread


Looks like you forgot to run one of the mySQL queries.

Mijae
01-23-2003, 03:45 PM
Bitsys, are Anger Points working yet? Because I just fought a battle where my combatant got over 100 AP but his AP% didnt seem to go up.

Also, does anyone know where I can find more backgrounds for the battle fields? Any width but at least 200 in height.

Bitsys
01-23-2003, 04:59 PM
sinister112:
It appears that some of the file edits to showthread.php were not made. Have vbhacker generate a text file of the hack, and manually re-apply all of the changes to showthread.php. In particular, the installer did not insert
user.ma AS uma,user.hp AS uhp,user.pp AS upp,user.ap AS uap,items_options.pointfield,items_options.lesanes tore,battle_options.namefield,battle_options.expra te,battle_options.privacy AS battleprivacy,items_user.*,battle_stats.*,rpg_race .name AS rpgracename,rpg_race.alignment AS rpgalignmentname,rpg_classf.name AS fclassname,
rpg_classf.folder AS fclassfolder,rpg_classm.name AS mclassname,rpg_classm.folder AS mclassfolder,rpg_element.name AS elename


in 2 places. Make sure that this code is in the correct 2 places in showthread.php. Also, if you can't get it to work, then vbhacker should have made a backup of all of the files it edited. THe files have a .bak extension. Simply remove the extension and you will have the original file again.

v0id:
I am not sure as to what you are saying. How can his anger ercentage go above 100%? Are you talking about PP and not AP?

Mijae
01-23-2003, 06:32 PM
No, what I ment is that my oppenent kept missing and hit Anger grew each time. In total his anger should have growed by 100 points but yet the AP: remained at 65% through out all the battle.

heretic
01-23-2003, 08:00 PM
Originally posted by Sinister112
bleg great my whole board is ++++ed and my friend didnt make a backup when i asked him to
god ++++ing crap now i have to reinstal. the whole damn board again


um, this is still beta, it's nowhere near release rediness, and you put it on a production board? without confirming you had a backup?


why?

freeshares1
01-24-2003, 06:17 PM
I could really do with some help with this. I have everything working except that when i try to invite a person to battle i get invaild password, I have read all 45 pages of this thread and half of the PHP.

It's a great hack i just wish i could sort out the bug i have...

Any thoughts?

Darkwaltz4
01-24-2003, 07:58 PM
lol, i put mines on a production board, but i go in there and fix anything thats messed up. and alot has been messed up with this hack. ive just about stabilized it. ive also added some things to somethings, lol

ive also added a large faq to the main faq sets on the itemshop. i intend to write one for the rpg system and the battle arena. if you want to read it, its at http://ffgods.ffextreme.com/forums/misc.php?action=faq
and my itemshop, which has been spiced up in a few places, is at http://ffgods.ffextreme.com/forums/itemshop.php


one bug however, is that update.php turns up a parse error, and from what i can see, it is not an error at all...so now i have to manually update all stats once a day...the error:

Parse error: parse error, unexpected ',' in /home/virtual/site19/fst/var/www/html/forums/update.php on line 189

Bitsys
01-24-2003, 09:47 PM
v0id:
I found the problem. The next version will be fixed. Thanks.

freeshares1:
What link are you using to get to the battles? What are your battle options set to? Are battles private?

Darkwaltz4:
What version of the hack are you using? Your Itemshop FAQ is nice.

Update.php is no longer used in the new version. I broke it a while ago in one of the versions and didn't want to fix it because I wasn't going to use it anyway. I forgot to take it out of the .zip file, I guess.

Darkwaltz4
01-24-2003, 11:29 PM
hmm, i am using the newest version-> .61 (or at least it said it was new on the first post a few hours ago) i upgraded to it ..2 days ago

*quick edit
i was originally using version .55, so i missed 6 updates, and applied them one by one 2 days ago

*yet another edit
another thing that i noticed during version 55, and now again using 61, is that stats are not capped...so right now for instance, i just gained 101% ap...
and before, which i would assume its still doing this, that you can heal with a potion to get say 1500/1300 hp...so stats are not capped at their maximums during battle

and thanks ^_^

freeshares1
01-25-2003, 10:14 AM
Bitsys -

Link www.hogwartsnews.com/vbportal/forums/battle.php

Battle options -

Battle hack on
Private off

Where does the password get stored, Does it stored in the database if so which field as it maybe something do with userfields.

Thanks for reading this

Bitsys
01-25-2003, 02:22 PM
Darkwaltz4:
The no-AP cap will be fixed in the next version. However, HP and MA should be properly capped in 0.61. I will look in to it some more.

freeshares1:
The password is stored in the `battle` table and is in a field called 'battlekey'. If possible, can you create a battle with someone esle on your boards so that I can see the error message myself?

Also, are you using the Browse screen to get to you battle, or are you typing in the battle number at battle.php and submitting it like that?

freeshares1
01-25-2003, 02:37 PM
Bitsys,

i will attach a error later but it reads

PLEASE ENTER A VALID PASSWORD

Both users have updated stats and posted..

I have checked the battle table and it's empty. Which file add the password?

Mijae
01-25-2003, 03:51 PM
I added a category to the itemshop and it went ok, but when I wanted to add items to that category I got this:

Warning: Variable passed to each() is not an array or object in /home/virtual/site24/fst/var/www/html/forum/admin/itemadmin.php on line 227

Items Added!

Obviously no items were added :P

Bitsys
01-25-2003, 04:23 PM
freeshares1:
Did you create a battle first? I went to your forums again and you still haven't created a battle. Also, can you provide a screenshot of the error?

battle.php is the file that creates the battles and stores the password in the database.

v0id:
I am not able to reproduce this error. What values are you entering in the fields?

freeshares1
01-25-2003, 04:37 PM
I will do a screen shot but it's the creating a battle i have a problem with. I goto battle.php and then enter name for battle, username (that has already been approved and posted) password leave money 0 and then click start battle it is then i get the error.

Hope that explains it better

freeshares1
01-25-2003, 04:48 PM
update - I have gone into the the database and added a battle manually and it works. If you browse battles you will see it. However it will not work if i do it any other way. The easiest way i can think of of recreating the problem is to make 1 post and then invite me to battle username phil then you will see the error.

Thanks in advance for your time in helping me out

Bitsys
01-25-2003, 07:24 PM
Hmm, I don't see the battle you created on the browse battles screen. I made a post and tried to challenge you, and I now see the error you are getting. Have you tried re-uploading battle.php?

Also, are you sure you have version 0.61?

Mijae
01-25-2003, 09:08 PM
I enter a new category, call it X (name doesnt matter), then I click Add Items and add one item with all fields right, and I get that error.

SHoeSTeR
01-25-2003, 10:42 PM
for some reason, all my users can do is use fists, and every battle ends in a draw ;/

Bitsys
01-26-2003, 02:06 AM
Originally posted by SHoeSTeR
for some reason, all my users can do is use fists, and every battle ends in a draw ;/

Did you read https://vborg.vbsupport.ru/showthread.php?postid=329575#post329575 yet?

Riddel
01-26-2003, 02:39 AM
Hey, I'm wondering if you might know what is wrong: the itemshop on my board has not restocked at all. I've tried lowering the restock time but still no luck. Also, I tried adding an item but it didn't add. Any ideas?

Thanks!

freeshares1
01-26-2003, 05:32 PM
Sorry i must have deleted it. I have readded it but made it as active but i still cant fight.

I am using 0.61B i have reloaded battle.php and the template battle.

any other idea's?

Thanks in advance

Originally posted by Bitsys
Hmm, I don't see the battle you created on the browse battles screen. I made a post and tried to challenge you, and I now see the error you are getting. Have you tried re-uploading battle.php?

Also, are you sure you have version 0.61?

Mrpolish
01-26-2003, 08:08 PM
Is there any way to not give gold per post in a selected forum (like spam) ?

Mrpolish
01-26-2003, 09:52 PM
I found a bug:
When you go to start battle and you wager all your money and you hit cancel the money goes to the bank and you can do that many times and make yourself rich.

Bitsys
01-26-2003, 10:31 PM
Riddel:
I wil be looking in to that.

freeshares1:
In battle.php find:
If($key == "" || !isset($key)) {
$message = "Please enter a valid password.";
eval("dooutput(\"".gettemplate('battle_userinbattle')."\");");
exit;
}

and replace it with:

/*
If($key == "" || !isset($key)) {
$message = "Please enter a valid password.";
eval("dooutput(\"".gettemplate('battle_userinbattle')."\");");
exit;
}
*/

That will fix it.

Mrpolish:
I think I can make it so that if you don't count posts in the forum, then it won't add gold in that forum as well. Is that what you want?

(second post):
That bug has been reported and will be fixed in the next version. Thanks.

Mrpolish
01-27-2003, 03:11 AM
When i select that the posts dont count in a forum it only affects the stats but not the gold, users still get gold per post.

Bitsys
01-27-2003, 03:37 AM
Originally posted by Mrpolish
When i select that the posts dont count in a forum it only affects the stats but not the gold, users still get gold per post.

In the next version, I will make it not add gold in forums where posts don't count.

chrisz
01-27-2003, 05:18 AM
I cant run the queries some error in query.php
Help?

freeshares1
01-27-2003, 05:18 AM
Bitsys

YOU ARE THE MAN!!!

Thanks...

chrisz
01-27-2003, 06:54 AM
Some more info on the error I get:
There seems to have been a slight problem with the FF Saiyans Forums database.
Please try again by pressing the refresh button in your browser.

An E-Mail has been dispatched to our Technical Staff, who you can also contact if the problem persists.

We apologise for any inconvenience.

Database error in vBulletin Control Panel 2.2.9:

Invalid SQL: CREATE TABLE `battle` (
`battlenumber` int(10) NOT NULL auto_increment,
`battlename` varchar(100) NOT NULL default '',
`owner` varchar(50) NOT NULL default '',
`ownerid` int(10) NOT NULL default '0',
`opponent` varchar(50) NOT NULL default '',
`opponentid` int(10) NOT NULL default '0',
`battlekey` varchar(35) default '0',
`battlestate` int(10) NOT NULL default '0',
`turnid` int(10) NOT NULL default '0',
`lastactive` int(10) NOT NULL default '0',
`wager` int(10) NOT NULL default '0',
`winnerid` int(10) NOT NULL default '0',
`winstatus` int(10) NOT NULL default '0',
`sceneid` int(10) NOT NULL default '0',
PRIMARY KEY (`battlenumber`)
) TYPE=MyISAM
mysql error: Table 'battle' already exists

mysql error number: 1050

Date: Monday 27th of January 2003 03:57:37 AM
Script: http://ffsaiyans.xeko.net/forum/forum/admin/query.php
Referer: http://ffsaiyans.xeko.net/forum/admin/query.php

chrisz
01-27-2003, 07:34 AM
**EDIT**
I reinstalled the forum with the original files and it works fine!
Thnx for the beaut hack dude.
I will show everyone my l33t forum when its done ;)

Mrpolish
01-27-2003, 03:32 PM
Thanks Bitsys, any ideas when the next version comes out or when the full version will be released ?

freeshares1
01-27-2003, 05:00 PM
Originally posted by freeshares1
Bitsys

YOU ARE THE MAN!!!

Thanks...

I knew i spoke too soon. Now the database does not store the password but it works if i add it manually into the database

Below is the private message i get (the password is missing)

phil has challenged you in a battle. It is battle number 4 and is called test5. There is 100 gil at stake in this battle. Your battle password is . To go to your battle click here

Bitsys
01-27-2003, 06:56 PM
Originally posted by freeshares1


I knew i spoke too soon. Now the database does not store the password but it works if i add it manually into the database

Below is the private message i get (the password is missing)

phil has challenged you in a battle. It is battle number 4 and is called test5. There is 100 gil at stake in this battle. Your battle password is . To go to your battle click here

The reason why you were getting invalid password is because it wasn't storing the password properly. Since I had you disable the password check code in battle.php, it won't give you your password because the script never received it. If you want to try something a little trickier that will require a file edit every time you upgrade, then do the following:

In the template battle_newbattle, find:

<input type="text" name="key">

and replace with

<input type="text" name="key1">

(you can use whatever value you want for "key1", just remember it for the next edit)

In battle.php, find ALL instances of

$key

and replace it with

$key1

(or replace it with whatever value you chose to use in the battle_newbattle template).


I really don't know why this is happening, since all of the other variables are being passed properly. This is sort of a last resort and I doubt it will work, but you never know.

saint_seiya
01-27-2003, 07:35 PM
It seems that i cant post any variable in the postbit, if i do it gives me an error.

I will talk to you on aim about it. ;)

mr e
01-28-2003, 03:23 AM
7) any chance you could stick the level column of the itemshop hack into templates to make it easier to customize?

by the way, great work :D

chrisz
01-28-2003, 11:52 AM
Ok I have the entire forum set up working perfectly.
I even tested the rpg and it was perfect.
Now when i finish a battle and click the achnoledge thing I get this
Pic1: http://ffsaiyans.xeko.net/error1.jpg
Scrolled Down: http://ffsaiyans.xeko.net/error2.jpg

Bitsys
01-28-2003, 12:09 PM
Originally posted by saint_seiya
It seems that i cant post any variable in the postbit, if i do it gives me an error.

I will talk to you on aim about it. ;)

What error is it giving you?

Originally posted by mr e
7) any chance you could stick the level column of the itemshop hack into templates to make it easier to customize?

by the way, great work

If I removed it from the .php file and made it static HTML in a template, then the "Hide Item Levels From Users" feature wouldn't work. What kind of modifying are you trying to do?

Originally posted by chrisz
Ok I have the entire forum set up working perfectly.
I even tested the rpg and it was perfect.
Now when i finish a battle and click the achnoledge thing I get this
Pic1: http://ffsaiyans.xeko.net/error1.jpg
Scrolled Down: http://ffsaiyans.xeko.net/error2.jpg

What forum are you attempting to post the results to?

chrisz
01-28-2003, 12:21 PM
I did have it in a forum called batle dome but I didnt like it how for every one post the exp went up like thirty so I deleted it.
Is that the problem?

chrisz
01-28-2003, 12:29 PM
Thnx Bitsys I fixed it.
I have another question for ya mate.
I enable the option of exp rising when members post but instead of going up the amount I chose per post it goes up by about 34% per post.
How can I fix this?

Riddel
01-28-2003, 02:10 PM
Oh, another thing to ask: I don't know if this might help any in pinpointing the problems/errors I'm getting (item shop not working), but even though there are members with 1000+ posts, the itemshop only allows them to purchase level 0 item. However, when I tried to purchase a level 0 item, I received a databse error:


Database error in vBulletin 2.2.9:

Invalid SQL: SELECT userpostcount,levelfield,exprate FROM battle_options
mysql error: Unknown column 'userpostcount' in 'field list'

mysql error number: 1054

Date: Tuesday 28th of January 2003 08:54:20 AM
Script: /metropolis/itemshop.php?action=buy&cat=1&item=Javelin&itemtype=0
Referer: http://www.zanarkand.net/metropolis/itemshop.php?expandall=1&itemtype=0


I think this error might be contained only to the itemshop since members' stats are looking normal, so I'm guessing that I probably messed up the code somewhere. Would uploading a fresh copy of itemshop.php help, or are there other files I will need to upload?

Btw, thanks a lot for helping us out! This hack is really awesome.

VeoMorphine
01-28-2003, 03:32 PM
{Small Release}
Name: Admin Manual for RPG System
Install Time: 2 mins
Level of Dif: Easy

This will add the manual that comes with the item shop to your admin CP so yourother admins can see it. My admins were at a loss when they could not figure out how it worked, so i did this for myself and decided that it would be a great idea to put it here.

Upload the attached rpgmanual.php to your /admin Directory.

Open admin/index.php and find:
makenavoption("Add Alignment","rpgadmin.php?action=addalignment", "<br>");

Above it put:
makenavoption("RPG Admin Manual","rpgmanual.php?", "<br>");

there ya go. Have fun :)

VeoMorphine
01-28-2003, 03:40 PM
Originally posted by Riddel
Oh, another thing to ask: I don't know if this might help any in pinpointing the problems/errors I'm getting (item shop not working), but even though there are members with 1000+ posts, the itemshop only allows them to purchase level 0 item. However, when I tried to purchase a level 0 item, I received a databse error:


Database error in vBulletin 2.2.9:

Invalid SQL: SELECT userpostcount,levelfield,exprate FROM battle_options
mysql error: Unknown column 'userpostcount' in 'field list'

mysql error number: 1054

Date: Tuesday 28th of January 2003 08:54:20 AM
Script: /metropolis/itemshop.php?action=buy&cat=1&item=Javelin&itemtype=0
Referer: http://www.zanarkand.net/metropolis/itemshop.php?expandall=1&itemtype=0


I think this error might be contained only to the itemshop since members' stats are looking normal, so I'm guessing that I probably messed up the code somewhere. Would uploading a fresh copy of itemshop.php help, or are there other files I will need to upload?

Btw, thanks a lot for helping us out! This hack is really awesome.

It looks to me like one of the querys did not run on the install. Try re-running the install script and make it recreate the battle_options table. Make sure it creates it with the userpostcount, levelfield, and exprate collums.

VeoMorphine
01-28-2003, 03:57 PM
Another Release.

This is just a getinfo template with everything in it allready for the member profile add-on. it's attached a zip, just replace the templates with the ones labled in the text files.

http://www.neurofreeze.net/forums/member.php?s=&action=getinfo&userid=3

This should also work on ANY style.

There is an example/demo of the getinfo

VeoMorphine
01-28-2003, 07:18 PM
I feel giving today :P

bitsys forgot to put this witht he postbit vars. So here is the code to put on the profile addon/postbit to let mods take and give money from bank/pocket.


For Pocket

<a href="javascript:void(window.open('moderator.php?s=$sess ion[sessionhash]&action=points&userid=$userinfo[userid]', '', 'toolbar=no,scrollbars=no,resizable=no,width=500,h eight=250'));">Money in Pocket:</a> $rpgcash<br>



For Bank

<a href="javascript:void(window.open('moderator.php?s=$sess ion[sessionhash]&action=bankmod&userid=$userinfo[userid]', '', 'toolbar=no,scrollbars=no,resizable=no,width=500,h eight=250'));">Money in Bank:</a> $rpgbank<br>

Darkwaltz4
01-29-2003, 01:43 AM
heey--veomorphine, ur contributions are pretty good ^_^

i love the template setup for the profile, and the admin manual (while useless for me, since i long memorized how to set stuff up) will be great so i dont have to explain it all to my other admin. he probably wont read it all....

i have some stuff i did to the itemshop templates and added some code to it (lol, the itemshop is my favorite part of this)

first, when i tried to remove the link to buy a personal itemshop (i dont like them, and i intend to apply a link to my own hack soon in its area), the links that go to the item types dissappeared. and i dont know why since they did not appear to be variables, and i certainly did not take any out from the template. so, to go around that, i came up with lines to say to ppl, which explain which itemshop they are in, what type they are (it will display a link to their itemshop if they are in the wrong one), an 'edit your character link' (its a 'register' link when you are not logged in) a link to the itemshop faq i wrote, and links to the other itemshop. in addition, all of the buying messages that appear throughout the itemshop page, now dump you at your itemshop, instead of the plain itemshop.php. and the links from the homepage and postbits now has a link that will take you directly to your itemshop. all basically done by tacking ?itemtype=$bbuserinfo[rpgtype] to all itemshop.php urls. my members especially like not having to go through the before-complicating lists of types, and i didnt like how it displayed them either, and now im rambling...

anyway, yes...

saint_seiya
01-29-2003, 01:45 AM
BitSys, I will tell you what the error is as soon as i see that noone is browsing the forums (so i can make the change and get the error again ;) )

mr e
01-29-2003, 02:18 AM
Here's a hack I created by me, quite useful too.

Special Classes for Mod/Admin only - mr e

Basically this makes it so only mods/admins can see/use certain classes you upload, 1 for any user, 0 for only mods/admins, also puts an * by any that are mod/admin specific so you can distinguish them in the drop down list.

Edit: Fixed small error

mr e
01-29-2003, 02:22 AM
Screenshot...I'll be releasing the hack to change the options to look like this, easier viewing for me at least, probably tomorrow at the latest.

mr e
01-29-2003, 03:15 AM
Here's the hack to make your CP look like mine did with tables and such

Easier Labels - mr e
Basically makes the list's into tables instead with improved viewing, or at least for me it' much easier, this changes your edit classes/races/elements pages.

Screenshot 1 post up

VeoMorphine
01-29-2003, 07:55 PM
looks like i started a trait to adding addons :P

ill be releasing a Manual for Users on how to do things in the RPG hack and i'll also be releaing a central panel for the RPG hack :)

Mystic Gohan
01-29-2003, 08:26 PM
Database error in vBulletin Control Panel 2.2.9:

Invalid SQL: ALTER TABLE rpg_classf ADD visible SMALLINT(5) NOT NULL DEFAULT=1
mysql error: You have an error in your SQL syntax near '=1' at line 1

mysql error number: 1064

Date: Wednesday 29th of January 2003 05:16:13 PM
Script: http://www.gotdbz.com/forum/forum/admin/specclasses.php?action=yes
Referer: http://www.gotdbz.com/forum/admin/specclasses.php


i got that for when i tried to run specclassed? can u help me mr e?

Mystic Gohan
01-29-2003, 08:55 PM
Originally posted by VeoMorphine
Another Release.

This is just a getinfo template with everything in it allready for the member profile add-on. it's attached a zip, just replace the templates with the ones labled in the text files.

http://www.neurofreeze.net/forums/member.php?s=&action=getinfo&userid=3

This should also work on ANY style.

There is an example/demo of the getinfo

none of the stats show up even thought i edited member.php

mr e
01-29-2003, 09:24 PM
my bad, redownload, zip file is fixed

Originally posted by Mystic Gohan
Database error in vBulletin Control Panel 2.2.9:

Invalid SQL: ALTER TABLE rpg_classf ADD visible SMALLINT(5) NOT NULL DEFAULT=1
mysql error: You have an error in your SQL syntax near '=1' at line 1

mysql error number: 1064

Date: Wednesday 29th of January 2003 05:16:13 PM
Script: http://www.gotdbz.com/forum/forum/admin/specclasses.php?action=yes
Referer: http://www.gotdbz.com/forum/admin/specclasses.php


i got that for when i tried to run specclassed? can u help me mr e?

Mystic Gohan
01-29-2003, 09:27 PM
its still the same. can u just tell me what queries should i run, and i will do it via phpmyadmin.

VeoMorphine
01-29-2003, 10:38 PM
Now for my next release is RPG CP/User Manual v1(theres gona be a version 2 when bitsys gets on aol :P) This basicly is 2 hacks in one.

Basicly what this does is add a menu were all your RPG stuff can be accessed from. It also add's an in deph manual on how to use the RPG system for users.

This will show your RPG stats As well. Attached here is a Screen shot. The release is a few posts down.

It can be found here:
https://vborg.vbsupport.ru/showthread.php?postid=348377#post348377

*edited for the v2 reelase.*

mr e
01-30-2003, 12:22 AM
what's the query, maybe i can help

@Mystic Gohan sorry, redownload, it'd help if i uploaded the new file, which i just now did

Mystic Gohan
01-30-2003, 12:34 AM
thanx,it worked.

saint_seiya
01-30-2003, 02:08 PM
The error was



Parse error: parse error, unexpected T_CHARACTER, expecting ']' in /usr/local/psa/home/vhosts/vgcity.com/httpdocs/forum/admin/functions.php(452) : eval()'d code on line 32

Parse error: parse error, unexpected T_CHARACTER, expecting ']' in /usr/local/psa/home/vhosts/vgcity.com/httpdocs/forum/admin/functions.php(452) : eval()'d code on line 32

Parse error: parse error, unexpected T_CHARACTER, expecting ']' in /usr/local/psa/home/vhosts/vgcity.com/httpdocs/forum/admin/functions.php(452) : eval()'d code on line 32

Parse error: parse error, unexpected T_CHARACTER, expecting ']' in /usr/local/psa/home/vhosts/vgcity.com/httpdocs/forum/admin/functions.php(452) : eval()'d code on line 32

Parse error: parse error, unexpected T_CHARACTER, expecting ']' in /usr/local/psa/home/vhosts/vgcity.com/httpdocs/forum/admin/functions.php(452) : eval()'d code on line 32

Parse error: parse error, unexpected T_CHARACTER, expecting ']' in /usr/local/psa/home/vhosts/vgcity.com/httpdocs/forum/admin/functions.php(452) : eval()'d code on line 32

Parse error: parse error, unexpected T_CHARACTER, expecting ']' in /usr/local/psa/home/vhosts/vgcity.com/httpdocs/forum/admin/functions.php(452) : eval()'d code on line 32

Parse error: parse error, unexpected T_CHARACTER, expecting ']' in /usr/local/psa/home/vhosts/vgcity.com/httpdocs/forum/admin/functions.php(452) : eval()'d code on line 32

Parse error: parse error, unexpected T_CHARACTER, expecting ']' in /usr/local/psa/home/vhosts/vgcity.com/httpdocs/forum/admin/functions.php(452) : eval()'d code on line 32

Parse error: parse error, unexpected T_CHARACTER, expecting ']' in /usr/local/psa/home/vhosts/vgcity.com/httpdocs/forum/admin/functions.php(452) : eval()'d code on line 32

Parse error: parse error, unexpected T_CHARACTER, expecting ']' in /usr/local/psa/home/vhosts/vgcity.com/httpdocs/forum/admin/functions.php(452) : eval()'d code on line 32

Parse error: parse error, unexpected T_CHARACTER, expecting ']' in /usr/local/psa/home/vhosts/vgcity.com/httpdocs/forum/admin/functions.php(452) : eval()'d code on line 32

Parse error: parse error, unexpected T_CHARACTER, expecting ']' in /usr/local/psa/home/vhosts/vgcity.com/httpdocs/forum/admin/functions.php(452) : eval()'d code on line 32

Parse error: parse error, unexpected T_CHARACTER, expecting ']' in /usr/local/psa/home/vhosts/vgcity.com/httpdocs/forum/admin/functions.php(452) : eval()'d code on line 32

Parse error: parse error, unexpected T_CHARACTER, expecting ']' in /usr/local/psa/home/vhosts/vgcity.com/httpdocs/forum/admin/functions.php(452) : eval()'d code on line 32


I am going to try to fix it, i will update you.

saint_seiya
01-30-2003, 02:12 PM
I have attached the functions.php file since i cant find the parse error :( Hope you can help.

Bitsys
01-30-2003, 03:39 PM
Hey guys, I am back now. I was sick for a few days and I couldn't use a computer.

Originally posted by Riddel
Oh, another thing to ask: I don't know if this might help any in pinpointing the problems/errors I'm getting (item shop not working), but even though there are members with 1000+ posts, the itemshop only allows them to purchase level 0 item. However, when I tried to purchase a level 0 item, I received a databse error:


Database error in vBulletin 2.2.9:

Invalid SQL: SELECT userpostcount,levelfield,exprate FROM battle_options
mysql error: Unknown column 'userpostcount' in 'field list'

mysql error number: 1054

Date: Tuesday 28th of January 2003 08:54:20 AM
Script: /metropolis/itemshop.php?action=buy&cat=1&item=Javelin&itemtype=0
Referer: http://www.zanarkand.net/metropolis/itemshop.php?expandall=1&itemtype=0


I think this error might be contained only to the itemshop since members' stats are looking normal, so I'm guessing that I probably messed up the code somewhere. Would uploading a fresh copy of itemshop.php help, or are there other files I will need to upload?

Btw, thanks a lot for helping us out! This hack is really awesome.

Could you explain the database structure of the battle_options table using phpmyadmin?


VeoMorphine:
Mind if I include the following add-ons you created in the next release?

RPG Admin Manual
Getinfo templates (will be in a folder called "Member Profile Add-on" with the Member Profile Add-on.txt file)

Credits will be given in Credits.txt, as always.

I will wait for when we talk on AIM to include the RPG CP/User Manual add-on
The links for the rpgbank and rpgcash are already in the postbit template, and I added them to the Member Profile Add-on. Should be there in the next release.

mr e:
Mind if I include both of your add-ons in the next release?

Credits will be given in Credits.txt, as always.


saint_seiya:
What code is around line 32 of your postbit template?

saint_seiya
01-30-2003, 04:23 PM
I thought the error was in funtions php but that error appears when i post any code you put in install.php . That time i put the link to the battle results... but as i said it happens with any code :(

Bitsys
01-30-2003, 04:42 PM
Originally posted by saint_seiya
I thought the error was in funtions php but that error appears when i post any code you put in install.php . That time i put the link to the battle results... but as i said it happens with any code :(

And you don't get the error when you don't paste any code from install.txt?

saint_seiya
01-30-2003, 04:46 PM
I dont know, i am gonna test that. Ok, one more thing.


xTooeyx: "There seems to have been a slight problem with the VGCity Forums database."
xTooeyx: I get that message
DAV N Y P D: when you do what
xTooeyx: click "submit" when I click what I wanna do


Man, i think its messed up :(

saint_seiya
01-30-2003, 04:48 PM
that problem of the error is fixed.

The only erros i still have:

I cant put any rpg variables in my postbit or i get the error:

Parse error: parse error, unexpected T_CHARACTER, expecting ']' in /usr/local/psa/home/vhosts/vgcity.com/httpdocs/forum/admin/functions.php(452) : eval()'d code on line 32
Maybe this happens because i have the + - hack installed, the shrink hack. :alien:

Top 10 Battle Stats are not working well. It just shows the stats for 10 users.

Bitsys
01-30-2003, 05:09 PM
Originally posted by saint_seiya
that problem of the error is fixed.

The only erros i still have:

I cant put any rpg variables in my postbit or i get the error:

Parse error: parse error, unexpected T_CHARACTER, expecting ']' in /usr/local/psa/home/vhosts/vgcity.com/httpdocs/forum/admin/functions.php(452) : eval()'d code on line 32
Maybe this happens because i have the + - hack installed, the shrink hack. :alien:


Top 10 Battle Stats are not working well. It just shows the stats for 10 users.

The + - hack might have something to do with it. I will go check that hack out.

Your Battle Stats Top 10 page is not working because no one has one any battles yet. By default, the Top 10 page shows the users with the most wins. Since none of your members have one any battles, it appears like it is not working. However, after 10 of your users win a battle, it look fine.

saint_seiya
01-30-2003, 05:12 PM
I see, so draws dont count eh :)

vdinh
01-30-2003, 06:20 PM
Hi Bitsys,
Is there an easy way to let others bet on each battle with each other, not with the server?

For example, user A bet that Fighter 1 will win battle X; User B bets the other Fighter, Fighter 2 will win that battle ... so he took that bet. At the end of the battle, if Fighter 1 wins, user A was given the money he bets, and user B's money was taken away automatically.

Also, can we post the battle result in one post instead of separating each comment? Thanks.

Bitsys
01-30-2003, 09:07 PM
After working with saint_seiya, we figured out the problem. If you are getting the error message

Parse error: parse error, unexpected T_CHARACTER, expecting ']' in /usr/local/psa/home/vhosts/vgcity.com/httpdocs/forum/admin/functions.php(452) : eval()'d code on line 32

or a slight variation of it (the exact line numbers may be different), then open your postbit template, and find:

<a href="battle.php?action=showuserstats&userid=$post[userid">Battle Record</a>

and replace it with

<a href="battle.php?action=showuserstats&userid=$post[userid]">Battle Record</a>

If you can't find this code, then you are probably getting some other error that may or may not be related to this hack.


Originally posted by vdinh
Hi Bitsys,
Is there an easy way to let others bet on each battle with each other, not with the server?

For example, user A bet that Fighter 1 will win battle X; User B bets the other Fighter, Fighter 2 will win that battle ... so he took that bet. At the end of the battle, if Fighter 1 wins, user A was given the money he bets, and user B's money was taken away automatically.

Also, can we post the battle result in one post instead of separating each comment? Thanks.

Currently, there is not an easy way to do this. Some of the problems with doing it: When would people get to bet on the battle? When would betting stop? What kinds of bets could be made? Ex: bets on retreats, draws, wins, etc.

The battle results can be made into one post. This is a battleupdate.php edit.

VeoMorphine
01-30-2003, 10:03 PM
RPG CP v2
Setup Time: 5 Minutes
Upgrade from v1 time: 5 Minutes
File Edits: None
File Uploads: 2
Template Edits: 1
Templates to Add: 2
Screen Shot: https://vborg.vbsupport.ru/attachment.php?s=&postid=348021
Demo: http://www.neurofreeze.net/rpgcp.php

Basicly what this does is add a menu were all your RPG stuff can be accessed from. It also add's an in deph manual on how to use the RPG system for users. It also shows your RPG stats on the CP.

Update Changes from v1 to v2.
- RPG Stats added.
- No permission if your not logged in shows up now.

Mystic Gohan
01-30-2003, 10:51 PM
thanx VeoMorphine, it worked perfect

mr e
01-31-2003, 12:46 AM
ya bitsys you can use my stuff :D

btw did you read your email? tell me if i should continue to work on that hack or would it not be practical?