Quote:
07-01-03 at 03:28 PM Airs said this in Post #1943
Not sure if this has been asked already but figured id give it a shot. Is it possible to add more stats or change the current ones? also is it possible to add a unique character or a person lets say a admin has one and another admin has a diffrent one etc. and normal players cant choose it if this was posted already sorry ><.
|
What do you mean by unique character? A unique class? Or a unique race? Or what?
You can add more stats, but only through code edits and database changes. There is no way to add stats through the admin cp.
Quote:
07-02-03 at 02:09 AM chrisz said this in Post #1946
I dont get the formula can someone explain >_<"
|
The formula:
PHP Code:
function cal_fists($level) {
return floor(log10($level) * 30 + rand(-(int)($level * .15), (int)($level * .15))) + 1;
}
floor() is a function that rounds the result down to the nearest whole number.
log10() is a function that does log base 10 to the passed variable.
rand() is a function that generates a random number between the two passed variables.
* is the multiplication symbol
So, here is how it works with a level of 15:
$damage = log10(15) * 30 + rand(-15 * .15, 15 * .15) + 1
$damage = 1.176 * 30 + rand(-2.25, 2.25) + 1
(Assume the rand() function returns 1.8)
$damage = 35.2827 + 1.8 + 1
$damage = 28.0827
(round down to the nearest whole number)
$damage = 28
Quote:
07-02-03 at 10:46 PM v0id said this in Post #1948
HUGE Money bug:
Anyone want to release a quick fix? My members are having way too much fun with this :P
|
I just re-wrote the entire money check code in battle.php. I think I fixed all the bugs it had.
If you want to try the code I just wrote, do the following:
In battle.php, find:
Code:
// Check to see if the combatants have the specified wager
if($wager > 0) {
$itemopt = $DB_site->query_first("SELECT lesanestore FROM items_options");
if(!$itemopt[0]) {
$usermoney = $DB_site->query_first("SELECT bankval FROM items_user WHERE userid='$bbuserinfo[userid]'");
$oppmoney = $DB_site->query_first("SELECT bankval FROM items_user WHERE userid='$opponent[userid]'");
If ($wager > $usermoney[0]) {
$itemoptions = $DB_site->query_first("SELECT pointfield FROM items_options");
$ownerpocketmoney = $DB_site->query_first("SELECT $itemoptions[0] FROM userfield WHERE userid='$bbuserinfo[userid]'");
if($wager > $ownerpocketmoney[0]) {
$message = "You do not have $wager gil to wager.";
eval("dooutput(\"".gettemplate('battle_userinbattle')."\");");
exit;
} elseif($wager > $oppmoney[0]) {
$opppocketmoney = $DB_site->query_first("SELECT $itemoptions[0] FROM userfield WHERE userid='$bbuserinfo[userid]'");
if($wager > $opppocketmoney[0]) {
$message = "Your opponent does not have $wager gil to wager.";
eval("dooutput(\"".gettemplate('battle_userinbattle')."\");");
exit;
} else {
$usernewmoney = $ownerpocketmoney[0] - $wager;
$oppnewmoney = $opppocketmoney[0] - $wager;
$DB_site->query("UPDATE items_user SET bankval='$usernewmoney' WHERE userid='$bbuserinfo[userid]'");
$DB_site->query("UPDATE userfield SET $itemoptions[0]='$oppnewmoney' WHERE userid='$opponent[userid]'");
}
} else {
$usernewmoney = $ownerpocketmoney[0] - $wager;
$oppnewmoney = $oppmoney[0] - $wager;
$DB_site->query("UPDATE userfield SET $itemoptions[0]='$usernewmoney' WHERE userid='$bbuserinfo[userid]'");
$DB_site->query("UPDATE items_user SET bankval='$oppnewmoney' WHERE userid='$opponent[userid]'");
}
} elseif($wager > $oppmoney[0]) {
$itemoptions = $DB_site->query_first("SELECT pointfield FROM items_options");
$opppocketmoney = $DB_site->query_first("SELECT $itemoptions[0] FROM userfield WHERE userid='$opponent[userid]'");
if($wager > $opppocketmoney[0]) {
$message = "Your opponent does not have $wager gil to wager.";
eval("dooutput(\"".gettemplate('battle_userinbattle')."\");");
exit;
} else {
$usernewmoney = $usermoney[0] - $wager;
$oppnewmoney = $opppocketmoney[0] - $wager;
$DB_site->query("UPDATE items_user SET bankval='$usernewmoney' WHERE userid='$bbuserinfo[userid]'");
$DB_site->query("UPDATE userfield SET $itemoptions[0]='$oppnewmoney' WHERE userid='$opponent[userid]'");
}
} else {
$usernewmoney = $usermoney[0] - $wager;
$oppnewmoney = $oppmoney[0] - $wager;
$DB_site->query("UPDATE items_user SET bankval='$usernewmoney' WHERE userid='$bbuserinfo[userid]'");
$DB_site->query("UPDATE items_user SET bankval='$oppnewmoney' WHERE userid='$opponent[userid]'");
}
} else {
$usermoney = $DB_site->query_first("SELECT storep FROM user WHERE userid='$bbuserinfo[userid]'");
$oppmoney = $DB_site->query_first("SELECT storep FROM user WHERE userid='$opponent[userid]'");
if($wager > $usermoney[0]) {
$message = "You do not have $wager gil to wager.";
eval("dooutput(\"".gettemplate('battle_userinbattle')."\");");
exit;
} elseif($wager > $oppmoney[0]) {
$message = "Your opponent does not have $wager gil to wager.";
eval("dooutput(\"".gettemplate('battle_userinbattle')."\");");
exit;
} else {
$DB_site->query("UPDATE user SET storep=storep-$wager WHERE userid='$bbuserinfo[userid]'");
$DB_site->query("UPDATE user SET storep=storep-$wager WHERE userid='$opponent[userid]'");
}
}
}
and change it to:
Code:
if($wager > 0)
{
$itemoptions = $DB_site->query_first("SELECT pointfield, lesanestore FROM items_options");
// Are we using lesane's store points?
if (!$itemopt[1])
{
$usermoney = $DB_site->query_first("SELECT items_user.bankval, userfield.$itemoptions[0] FROM items_user, userfield WHERE items_user.userid='$bbuserinfo[userid]' AND userfield.userid='$bbuserinfo[userid]'");
$usermoney['total'] = $usermoney[0] + $usermoney[1];
$oppmoney = $DB_site->query_first("SELECT items_user.bankval, userfield.$itemoptions[0] FROM items_user, userfield WHERE items_user.userid='$opponent[userid]' AND userfield.userid='$opponent[userid]'");
$oppmoney['total'] = $oppmoney[0] + $oppmoney[1];
// Does the user have enough money to wager?
if($usermoney['total'] < $wager)
{
$message = "You do not have $wager to wager.";
eval("dooutput(\"".gettemplate('battle_userinbattle')."\");");
exit;
}
// Does the opponent have enough money to wager?
if($oppmoney['total'] < $wager)
{
$message = "Your opponent does not have $wager to wager.";
eval("dooutput(\"".gettemplate('battle_userinbattle')."\");");
exit;
}
// If we have gotten this far, then both people have enough money to wager
if ($usermoney[1] < $wager)
{
// The user has to take some money from their bank account
// but first, we need to clean their pocket cash
$DB_site->query("UPDATE userfield SET $itemoptions[0] = 0 WHERE userid = $bbuserinfo[userid]");
// Now, adjust the bank account
$DB_site->query("
UPDATE items_user
SET bankval = bankval - ".($wager - $usermoney[1]) // (wager - $usermoney[1]) is the same as (wager - user's cash)
." WHERE userid=$bbuserinfo[userid]
");
}
else
{
// The user has enough cash to pay for the wager
$DB_site->query("UPDATE userfield SET $itemoptions[0] = $itemoptions[0] - $wager WHERE userid = '$bbuserinfo[userid]'");
}
if ($oppmoney[1] < $wager)
{
// The opponent has to take some money from their bank account
// but first, we need to clean their pocket cash
$DB_site->query("UPDATE userfield SET $itemoptions[0] = 0 WHERE userid = $opponent[userid]");
// Now, adjust the bank account
$DB_site->query("
UPDATE items_user
SET bankval = bankval - ".($wager - $oppmoney[1]) // (wager - $oppmoney[1]) is the same as (wager - opponent's cash)
." WHERE userid=$opponent[userid]
");
}
else
{
// The opponent has enough cash to pay for the wager
$DB_site->query("UPDATE userfield SET $itemoptions[0] = $itemoptions[0] - $wager WHERE userid = '$opponent[userid]'");
}
}
else
{
// Yes, we are using Lesane's Store Points
$usermoney = $DB_site->query_first("SELECT storep FROM user WHERE userid='$bbuserinfo[userid]'");
$oppomoney = $DB_site->query_first("SELECT storep FROM user WHERE userid='$opponent[userid]'");
// Does the user have enough money to wager?
if($usermoney[0] < $wager)
{
$message = "You do not have $wager to wager.";
eval("dooutput(\"".gettemplate('battle_userinbattle')."\");");
exit;
}
// Does the opponent have enough money to wager?
if($oppmoney[0] < $wager)
{
$message = "Your opponent does not have $wager to wager.";
eval("dooutput(\"".gettemplate('battle_userinbattle')."\");");
exit;
}
// If we have gotten this far, then both people have enough money to wager
// so update the user table
$DB_site->query("UPDATE user SET storep = storep - $wager WHERE userid=$bbuserinfo[userid] OR userid=$opponent[userid]");
}
}
/*
// Check to see if the combatants have the specified wager
if($wager > 0) {
$itemopt = $DB_site->query_first("SELECT lesanestore FROM items_options");
if(!$itemopt[0]) {
$usermoney = $DB_site->query_first("SELECT bankval FROM items_user WHERE userid='$bbuserinfo[userid]'");
$oppmoney = $DB_site->query_first("SELECT bankval FROM items_user WHERE userid='$opponent[userid]'");
If ($wager > $usermoney[0]) {
$itemoptions = $DB_site->query_first("SELECT pointfield FROM items_options");
$ownerpocketmoney = $DB_site->query_first("SELECT $itemoptions[0] FROM userfield WHERE userid='$bbuserinfo[userid]'");
if($wager > $ownerpocketmoney[0]) {
$message = "You do not have $wager gil to wager.";
eval("dooutput(\"".gettemplate('battle_userinbattle')."\");");
exit;
} elseif($wager > $oppmoney[0]) {
$opppocketmoney = $DB_site->query_first("SELECT $itemoptions[0] FROM userfield WHERE userid='$bbuserinfo[userid]'");
if($wager > $opppocketmoney[0]) {
$message = "Your opponent does not have $wager gil to wager.";
eval("dooutput(\"".gettemplate('battle_userinbattle')."\");");
exit;
} else {
$usernewmoney = $ownerpocketmoney[0] - $wager;
$oppnewmoney = $opppocketmoney[0] - $wager;
$DB_site->query("UPDATE items_user SET bankval='$usernewmoney' WHERE userid='$bbuserinfo[userid]'");
$DB_site->query("UPDATE userfield SET $itemoptions[0]='$oppnewmoney' WHERE userid='$opponent[userid]'");
}
} else {
$usernewmoney = $ownerpocketmoney[0] - $wager;
$oppnewmoney = $oppmoney[0] - $wager;
$DB_site->query("UPDATE userfield SET $itemoptions[0]='$usernewmoney' WHERE userid='$bbuserinfo[userid]'");
$DB_site->query("UPDATE items_user SET bankval='$oppnewmoney' WHERE userid='$opponent[userid]'");
}
} elseif($wager > $oppmoney[0]) {
$itemoptions = $DB_site->query_first("SELECT pointfield FROM items_options");
$opppocketmoney = $DB_site->query_first("SELECT $itemoptions[0] FROM userfield WHERE userid='$opponent[userid]'");
if($wager > $opppocketmoney[0]) {
$message = "Your opponent does not have $wager gil to wager.";
eval("dooutput(\"".gettemplate('battle_userinbattle')."\");");
exit;
} else {
$usernewmoney = $usermoney[0] - $wager;
$oppnewmoney = $opppocketmoney[0] - $wager;
$DB_site->query("UPDATE items_user SET bankval='$usernewmoney' WHERE userid='$bbuserinfo[userid]'");
$DB_site->query("UPDATE userfield SET $itemoptions[0]='$oppnewmoney' WHERE userid='$opponent[userid]'");
}
} else {
$usernewmoney = $usermoney[0] - $wager;
$oppnewmoney = $oppmoney[0] - $wager;
$DB_site->query("UPDATE items_user SET bankval='$usernewmoney' WHERE userid='$bbuserinfo[userid]'");
$DB_site->query("UPDATE items_user SET bankval='$oppnewmoney' WHERE userid='$opponent[userid]'");
}
} else {
$usermoney = $DB_site->query_first("SELECT storep FROM user WHERE userid='$bbuserinfo[userid]'");
$oppmoney = $DB_site->query_first("SELECT storep FROM user WHERE userid='$opponent[userid]'");
if($wager > $usermoney[0]) {
$message = "You do not have $wager gil to wager.";
eval("dooutput(\"".gettemplate('battle_userinbattle')."\");");
exit;
} elseif($wager > $oppmoney[0]) {
$message = "Your opponent does not have $wager gil to wager.";
eval("dooutput(\"".gettemplate('battle_userinbattle')."\");");
exit;
} else {
$DB_site->query("UPDATE user SET storep=storep-$wager WHERE userid='$bbuserinfo[userid]'");
$DB_site->query("UPDATE user SET storep=storep-$wager WHERE userid='$opponent[userid]'");
}
}
}
*/
Quote:
07-03-03 at 01:55 PM Spark said this in Post #1951
hm here is a bad bug
I was challenged by a user
I was in trouble so i cancel the battle
The user , has lost his wager...and i win the wager...without a fight, only the challenge PM.
What?s that?
|
Try the code fix I did above and wait for the next update. I changed some of the code for this.
Quote:
07-04-03 at 02:01 AM Me! said this in Post #1952
I am wondering if it's possible to show this on the index page of my forum, something like "Guy VS Joe"
However when I place the code in the forum index template nothing shows. This is what I tried:
Code:
$row[owner]
<normalfont>$row[opponent]</normalfont>
|
That would require a custom hack.
Quote:
07-04-03 at 12:15 PM BrandonC said this in Post #1956
For some reason, my users' stats arent showing up at all. It keeps saying their at 0 HP and everything else, but mine works fine. Why is that?
|
Have the user's updated their stats in their profile? Does this happen to everyone but you? Have you tried running DB Fix?
Quote:
07-07-03 at 09:24 PM kaotic said this in Post #1967
Here's a couple of things I'm curious about...
-Would a Item Trading or PvM feature be possible to create?
|
It wouldn't be easy. I have thought about it before.
Quote:
07-07-03 at 09:24 PM kaotic said this in Post #1967
-What is the query used to purchase an item?
|
You will need to study the 'BUY' code in itemshop.php in order to understand the queries involved. Look for
PHP Code:
// ###################### buy #######################
in itemshop.php
Quote:
07-07-03 at 09:24 PM kaotic said this in Post #1967
Help would be appreciated. :)
Edit:
Another question. :) Item categories (with exception of the top one) are automatically collapsed if you are "Generic Type". If you are another RPG type, the rows are automatically expanded. How would I go about having them collapsed to begin with, rather than expanded?
|
In itemshop.php, find:
PHP Code:
if($options['onofforder']==1) {
and above it, add:
I think that will work.
Quote:
07-09-03 at 12:23 PM t0ucan said this in Post #1973
Alright, I've installed it on my boards and everything seems to be running smoothly. Had a small problem with the battle though, it said I didn't have a weapon....
|
From the first post:
Quote:
In order to assign which weapon categories do what kind of damage in battle, you must go to the "Edit Category" link located in the "Edit Items" menu of the admin cp. Select a Battle type for the category and save changes.
|
Quote:
Yesterday at 05:32 PM Jagang said this in Post #1978
I have a little problem with the hack--nothing major, but a weird occurance.
Several of my older members, the mods, have less hitpoints than members of quite a lower level. Our site is, so far, still in the beta testing phase, and fairly new, so noone is very high level yet, but it appears to be a trend that will continue and get far, far worse as the levels do go up. Our main programmers are not available for a good period of time because of IRL issues to go into the codes and find out, so I came here to ask the source.
After the stats are updated, it looks like this for certain users, names will not be used. Most of the mods are about the same level and HP count, and from extrapolating with other mods and members who have been around since the begginning as opposed to new members, it appears that the trend carries through. The mods are all using superior classes, and the race, elements, weaponry, etc of the two example users are all the same.
Level 44 Mod
1582 HP
Level 35 Member
1880 HP
|
You can try to do the following:
In the Auto-Update Stats add-on (newthread.php, newpost.php), and member.php, find:
PHP Code:
$maxhpupdate = ( $level * $extrastats[hpmodifier] * $hpmulti) + $hpmodifier;
and REPLACE it with:
PHP Code:
$maxhpupdate = ( $level * $extrastats[hpmodifier]) + $hpmodifier;
Please note that this will reduce some users' HP, but it should remain constant after that initial decrease. If you want to do the same for MA and PP, then let me know.