vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 2.x Beta Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=5)
-   -   RPG Integration Hack /w Battle (BETA) (https://vborg.vbsupport.ru/showthread.php?t=46417)

lioncool1589 06-25-2003 02:19 AM

i checked 3 times already nothing wrong in battle.php

Darkwaltz4 06-25-2003 06:50 PM

why dont you pm me your battle.php file and ill find whats wrong with it for you?

lioncool1589 06-26-2003 07:56 AM

Darkwaltz4 ur midi work fine now i fixed the problems thx for ur help

Darkwaltz4 06-26-2003 04:17 PM

whoops, yeah thats the 'original' line of code :-p sorry, ill fix that in the file, thanks ;)

Bitsys 06-26-2003 06:04 PM

Quote:

Today at 11:29 AM Me! said this in Post #1909
I found a little bug, I set certain items to be exclusive to certain classes. For example I'm a priestess which is categorized under holy type. I also have paladin which is classified as Paladin.

Whenever I go into the item shop, instead of taking me to the holy class only weapons I am instead taken to the Paladins weapons, I can even purchase them.

It doesn't seem to recognize I'm not a paladin unless I go and click on some other category like Mage or something.

Thanks, will be fixed in the next version, I think. Quick fix:

In itemshop.php, find:

PHP Code:

$pos strpos($selitem[type], $itemtype);
                                        if(
$pos !== false || $catcheck[type] == 1) { 

And REPLACE with:
PHP Code:

if(in_array($itemtypeexplode(' '$selitem['type'])) || $catcheck[type] == 1) { 

Let me know if that works. If not, then I need to do something else :)

Bitsys 06-27-2003 01:35 AM

Quote:

Today at 08:11 PM Me! said this in Post #1912
*dances around* Thanks I will try that now :D

Edit: Hmm nope that didn't seem to fix it :/
also Your welcome Darkwaltz ^^


What are the IDs for the Paladin and Holy types?

SmEdD 06-27-2003 05:55 AM

Is there a way to allow users under level 10 or what ever you want get healed automatically after battle.

Reason I want this is all the new members strugle and give up. This would allow them to catch up to us elders.

Bitsys 06-27-2003 01:41 PM

Quote:

Yesterday at 10:32 PM Me! said this in Post #1914
Hmm Holy type is #4 while Paladin is #10
Are you still able to purchase the item?

Quote:

Today at 01:55 AM SmEdD said this in Post #1915
Is there a way to allow users under level 10 or what ever you want get healed automatically after battle.

Reason I want this is all the new members strugle and give up. This would allow them to catch up to us elders.

In heal.php, find:

PHP Code:

function healcheck($healcost$healmodifier) {
        if(
$healcost && $healmodifier != 0)
                return 
1;
        else
                return 
$healcost;
}
function 
healcost($selection 1$max 1$norm 1$modifier 1) {
        if (
$selection == 1) {
                return @
floor($max .25 $modifier);
        } elseif (
$selection == 2) {
                return @
floor($max .5 $modifier);
        } elseif (
$selection == 3) {
                return @
floor($max $modifier);
        } elseif (
$selection == 4) {
                return @
floor(($max $norm) * $modifier);
        }


And REPLACE with:

PHP Code:

function get_user_level()
{
    global 
$bbuserinfo;
    static 
$userlevel;
    
    if (!
$userlevel)
    {
        
$battleopt $DB_site->query_first("SELECT exprate FROM battle_options");
        
$userlevel getlevel($bbuserinfo['xp'], $battleopt['exprate']);
    }
    return 
$userlevel;
}
function 
healcheck($healcost$healmodifier) {
        if (
get_user_level() < 10)
        {
            return 
0;
        }
        if(
$healcost && $healmodifier != 0)
                return 
1;
        else
                return 
$healcost;
}
function 
healcost($selection 1$max 1$norm 1$modifier 1) {

        if (
get_user_level() < 10)
        {
            return 
0;
        }
        
        if (
$selection == 1) {
                return @
floor($max .25 $modifier);
        } elseif (
$selection == 2) {
                return @
floor($max .5 $modifier);
        } elseif (
$selection == 3) {
                return @
floor($max $modifier);
        } elseif (
$selection == 4) {
                return @
floor(($max $norm) * $modifier);
        }


This is not tested, but I think it will work.

lioncool1589 06-28-2003 01:04 AM

nvm i fixed

SmEdD 06-28-2003 03:35 AM

Actually I got it for it to do it right after the battle.

It's a crappy code but it works and no problems so far. I'm sure there is a easier way to do the code but oh well.

In battleupdate.php find:
PHP Code:

function endbattle($winnerid$loserid) {
        global 
$DB_site$bbuserinfo$battle$username$opponentname$battleaction;
        
$itemopt $DB_site->query_first("SELECT lesanestore FROM items_options");
        if(!
$itemopt[0]) {
                
$newmoney $DB_site->query_first("SELECT bankval FROM items_user WHERE userid='$winnerid'");
                
$newmoney $newmoney[bankval] + $battle[wager] * 2;
                
$DB_site->query("UPDATE items_user SET bankval='$newmoney' WHERE userid='$winnerid'");
        } else {
                
$newmoney $DB_site->query_first("SELECT storep FROM user WHERE userid='$winnerid'");
                
$newmoney $newmoney[0] + $battle[wager] * 2;
                
$DB_site->query("UPDATE user SET storep='$newmoney' WHERE userid='$winnerid'");
        }
        
$DB_site->query("UPDATE battle_stats SET wins=wins+1 WHERE userid='$winnerid'");
        
$DB_site->query("UPDATE battle_stats SET losses=losses+1 WHERE userid='$loserid'");
        
$totalwager $battle[wager] * 2;
        if(
$winnerid == $bbuserinfo[userid]) {
                
$battleaction .= "$username was awarded $$totalwager for winning the battle.";
        } else {
                
$battleaction .= "$opponentname was awarded $$totalwager for winning the battle.";
        } 

Add after:
PHP Code:

                $healuser $DB_site->query_first("SELECT * FROM user WHERE userid='$bbuserinfo[userid]'");
            
$level getlevel($healuser['xp'], $healuser['exprate'], 1);
            
$ep floor (100 * ($level floor ($level)));
            
$showlevel floor ($level 1);
        if(
$showlevel == 1){
                
$DB_site->query("UPDATE user SET hp=maxhp WHERE userid='$bbuserinfo[userid]'");
        }
        if(
$showlevel == 2){
                
$DB_site->query("UPDATE user SET hp=maxhp WHERE userid='$bbuserinfo[userid]'");
        }
        if(
$showlevel == 3){
                
$DB_site->query("UPDATE user SET hp=maxhp WHERE userid='$bbuserinfo[userid]'");
        }
        if(
$showlevel == 4){
                
$DB_site->query("UPDATE user SET hp=maxhp WHERE userid='$bbuserinfo[userid]'");
        }
        if(
$showlevel == 5){
                
$DB_site->query("UPDATE user SET hp=maxhp WHERE userid='$bbuserinfo[userid]'");
        }
        if(
$showlevel == 6){
                
$DB_site->query("UPDATE user SET hp=maxhp WHERE userid='$bbuserinfo[userid]'");
        }
        if(
$showlevel == 7){
                
$DB_site->query("UPDATE user SET hp=maxhp WHERE userid='$bbuserinfo[userid]'");
        }
        if(
$showlevel == 8){
                
$DB_site->query("UPDATE user SET hp=maxhp WHERE userid='$bbuserinfo[userid]'");
        }
        if(
$showlevel == 9){
                
$DB_site->query("UPDATE user SET hp=maxhp WHERE userid='$bbuserinfo[userid]'");
        }
        if(
$showlevel == 10){
                
$DB_site->query("UPDATE user SET hp=maxhp WHERE userid='$bbuserinfo[userid]'");
        } 

I'm gonna redo it like the other one looks in the battle update file


All times are GMT. The time now is 03:55 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.03839 seconds
  • Memory Usage 1,817KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (6)bbcode_php_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (5)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete