vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   This has got to be simple but its late (https://vborg.vbsupport.ru/showthread.php?t=46362)

Jalrock 12-04-2002 02:07 AM

This has got to be simple but its late
 
The following code is activated by a link that has the userid in it.
Code:

//SELECT OPPONENT
//////////
if ($action=="selectuser") {
$therebattlestats=$DB_site->query_first("SELECT username, battle_armor, battle_intel, battle_magic, battle_skill, battle_armor, battle_health FROM user WHERE userid='$userid'");

$battle_username = $therebattlestats['username'];
$battle_health = $therebattlestats['battle_health'];
$battle_intel = $therebattlestats['battle_intel'];
$battle_magic = $therebattlestats['battle_magic'];
$battle_skill = $therebattlestats['battle_skill'];
$battle_armor = $therebattlestats['battle_armor'];

$DB_site->free_result($therebattlestats);
    eval("\$therestats = \"".gettemplate('battle_there_stats')."\";");

eval("dooutput(\"".gettemplate("battle_main")."\");");
}

However it is not picking up the userid in the link.

Any help is greatly appreciated.

christec 12-04-2002 02:48 AM

Try $bbuserinfo[userid] instead of $userid

Erwin 12-05-2002 02:19 AM

Change this:

PHP Code:

$therebattlestats=$DB_site->query_first("SELECT username, battle_armor, battle_intel, battle_magic, battle_skill, battle_armor, battle_health FROM user WHERE userid='$userid'"); 

to this:

PHP Code:

$therebattlestats=$DB_site->query_first("SELECT userid, username, battle_armor, battle_intel, battle_magic, battle_skill, battle_armor, battle_health FROM user WHERE userid='$userid'"); 

You need to SELECT userid from the USER table as well, which you haven't done.

Jalrock 12-05-2002 02:47 AM

Thanks. I also found that the whole thing can be replaced with.....
Code:

if ($action=="selectuser") {
$user2info=getuserinfo($useridb);
$battle_username = $user2info['username'];
$battle_health = $user2info['battle_health'];
$battle_intel = $user2info['battle_intel'];
$battle_magic = $user2info['battle_magic'];
$battle_skill = $user2info['battle_skill'];
$battle_armor = $user2info['battle_armor'];
$DB_site->free_result($user2info);
eval("\$battle_user2 = \"".gettemplate('battle_user2')."\";");
}

Erwin,
You have been a big help thus far and I really do appreciate it. If you get to looking for a really simple to install and easy to use RPG battle hack, I will have it soon and it is yours.

Erwin 12-06-2002 03:12 AM

No worries. :)


All times are GMT. The time now is 07:05 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.01794 seconds
  • Memory Usage 1,722KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (2)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (5)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
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete