The Arcive of vBulletin Modifications Site. |
|
|
#1
|
|||
|
|||
|
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")."\");");
}
Any help is greatly appreciated. |
|
#2
|
|||
|
|||
|
Try $bbuserinfo[userid] instead of $userid
|
|
#3
|
||||
|
||||
|
Change this:
PHP Code:
PHP Code:
|
|
#4
|
|||
|
|||
|
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')."\";");
}
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. |
|
#5
|
||||
|
||||
|
No worries.
|
![]() |
|
|
| X vBulletin 3.8.12 by vBS Debug Information | |
|---|---|
|
|
More Information |
|
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|