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)

Bitsys 06-14-2003 03:25 AM

Quote:

Yesterday at 09:42 PM Moreliator said this in Post #1806
Bitsy, when users edit their character and stuff in their User CP ----> Edit Options sometimes things do not change in real time. For example, earlier today I was testing it out and when I switched my class the Type would also switch right then and there to match the Class. Tonight, however, I have to select a new class, then hit update, then go back to Edit Info to see the new type... I'm not sure why this is. How can I get it to go back to how it was before?
Do you know of anything that could have changed the way it works? Anything that may have stopped it from working? Does this happen to all users who select that particular class/type?


Quote:

Today at 06:48 PM RPGHost said this in Post #1809
I have an issue where the USER CP area lists the special fields of "race", class, etc 2 times. Once in the required area and again at the bottom. It only updates if you change the one on the bottom. Very confusing. I looked all over in the code and the data and couldn't figure it out. I could get them both to go away but not just one. Anyone have this problem? Suggestions to fix it? It's a new installation on 2.3.0. I'm testing it here:

James


Have you checked your modifyprofile template to see if there is duplicate HTML code in there?

RPGHost 06-14-2003 03:49 AM

Quote:

Today at 05:25 AM Bitsys said this in Post #1810
Have you checked your modifyprofile template to see if there is duplicate HTML code in there?
Yeah, it's not there. I assume that the RACE and CLASS and all that are getting into BOTH of these variables:

$customfields_required

$customfields

Where I think it should only be in the later of the two. So it shows up twice but only the last one in the form is effective. So somehow the members.php file is messed up. Yet I didn't do any manual editing.

This is what's loaded into the first variable:

$profilefields=$DB_site->query("SELECT * FROM profilefield WHERE editable = 1 ORDER BY displayorder");

Here is what I think is loaded into the later:

$profilefields=$DB_site->query("SELECT profilefieldid,required,title FROM profilefield WHERE hidden=0 ORDER BY displayorder");

Ideas?

James

Moreliator 06-14-2003 10:02 AM

Quote:

Today at 05:25 AM Bitsys said this in Post #1810
Do you know of anything that could have changed the way it works? Anything that may have stopped it from working? Does this happen to all users who select that particular class/type?


I did change a few things. First, I deleted the first instance of the $RPG Name and element and all that stuff in the modify_profile template. Next, I remember also having to delete a "_require" from the template because it was actually showing up on teh page. But that is all...

Bitsys 06-14-2003 03:37 PM

Quote:

Yesterday at 11:49 PM RPGHost said this in Post #1811
Yeah, it's not there. I assume that the RACE and CLASS and all that are getting into BOTH of these variables:

$customfields_required

$customfields

Where I think it should only be in the later of the two. So it shows up twice but only the last one in the form is effective. So somehow the members.php file is messed up. Yet I didn't do any manual editing.

This is what's loaded into the first variable:

$profilefields=$DB_site->query("SELECT * FROM profilefield WHERE editable = 1 ORDER BY displayorder");

Here is what I think is loaded into the later:

$profilefields=$DB_site->query("SELECT profilefieldid,required,title FROM profilefield WHERE hidden=0 ORDER BY displayorder");

Ideas?

James


Quote:

Today at 06:02 AM Moreliator said this in Post #1812
I did change a few things. First, I deleted the first instance of the $RPG Name and element and all that stuff in the modify_profile template. Next, I remember also having to delete a "_require" from the template because it was actually showing up on teh page. But that is all...

Can both of you give me your modifyprofile template so that I can make sure I am on the same page as you?

Moreliator 06-14-2003 06:09 PM

Sure, heres mine, pasted exactly as it is.

Code:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>$bbtitle - Update profile</title>
$headinclude
</head>
<body>
<SCRIPT LANGUAGE="JAVASCRIPT">
<!--
$racearrays
$classarrays
$typearrays
function updateRaces(){
  with (document.profile.alignment){
    var choice = options[selectedIndex].value;
  }
  document.profile.rpgrace.length = 0;
    choice = eval(choice);
  for (var i=0;i<choice.length;i++){
    with (document.profile.rpgrace){
      options[length] = new Option(choice[i],choice[++i],false,false);
    }
  }
  if ((parseInt(navigator.appVersion) < 5) && (navigator.appName == "Netscape"))  {        history.go(0);
  }
}

function updateType(){
  with (document.profile.rpggender){
    var gender = options[selectedIndex].value;
  }
  if (gender == "gd1"){
    with (document.profile.rpgclass){
      var rclass = options.selectedIndex;
    }
    rclass = eval(rclass);
    document.profile.rpgtypename.value = typename1[rclass];
    document.profile.rpgtypeid.value = typeid1[rclass];

  } else if(gender == "gd2") {
    with (document.profile.rpgclass){
      var rclass = options.selectedIndex;
    }
    rclass = eval(rclass);
    document.profile.rpgtypename.value = typename2[rclass];
    document.profile.rpgtypeid.value = typeid2[rclass];
  } else {
    document.profile.rpgtypename.value = typename0[0];
    document.profile.rpgtypeid.value = typeid0[0];

  }
  if ((parseInt(navigator.appVersion) < 5) && (navigator.appName == "Netscape"))  {        history.go(0);
  }
}

function updateClasses(){
  with (document.profile.rpggender){
    var choice = options[selectedIndex].value;
  }
  document.profile.rpgclass.length = 0;
    choice = eval(choice);
  for (var i=0;i<choice.length;i++){
    with (document.profile.rpgclass){
      options[length] = new Option(choice[i],choice[++i],false,false);
    }
  }
  document.profile.rpgtypename.value = typename0[0];
  document.profile.rpgtypeid.value = typeid0[0];
  updateType();
  if ((parseInt(navigator.appVersion) < 5) && (navigator.appName == "Netscape"))  {        history.go(0);
  }
}
//-->
</script>
$header

<!-- breadcrumb -->
<table cellpadding="2" cellspacing="0" border="0" width="95%"  align="center">
<tr>
        <td width="100%"><img src="https://vborg.vbsupport.ru/images/vb_bullet.gif" align="middle" alt="vBulletin">
        <normalfont><b><a href="index.php?s=$session[sessionhash]">$bbtitle</a> &gt;
        <a href="usercp.php?s=$session[sessionhash]">User Control Panel For $bbuserinfo[username]</a> &gt;
        Edit Profile</b></normalfont></td>
</tr>
</table>
<!-- /breadcrumb -->

<br>
$cpnav
<br>

<center>$coppatext</center>

<form name="profile" action="member.php" method="post">
<input type="hidden" name="s" value="$session[sessionhash]">

<table cellpadding="0" cellspacing="0" border="0" bgcolor="#0A293E"  width="95%" align="center"><tr><td>
<table cellpadding="4" cellspacing="1" border="0"  width="100%">
<tr>
        <td bgcolor="#336D95" background="https://vborg.vbsupport.ru/images/catagory_backing.gif" colspan="2"><normalfont color="#000000"><b>Edit Profile - $bbuserinfo[username]</b></normalfont></td>
</tr>
<tr>
        <td bgcolor="#1D6AA0" colspan="2"><normalfont color="#EEEEFF" class="thtcolor"><b>Registration: Required Information</b></normalfont>
        <smallfont color="#EEEEFF" class="thtcolor">All fields are required.</smallfont></td>
</tr>
$parentemail
<tr>
        <td bgcolor="#1C5780"><normalfont><b>Email Address:</b></normalfont></td>
        <td bgcolor="#1C5780"><normalfont><input type="text" class="bginput" name="email" value="$bbuserinfo[email]" size="30" maxlength="150"></normalfont></td>
</tr>
<tr>
        <td bgcolor="#1C5780"><normalfont><b>Confirm Email Address:</b></normalfont></td>
        <td bgcolor="#1C5780"><normalfont><input type="text" class="bginput" name="emailconfirm" value="$bbuserinfo[email]" size="30" maxlength="150"></normalfont></td>
</tr>

<!-- *** -->
<tr>
        <td bgcolor="#1D6AA0" colspan="2"><normalfont color="#EEEEFF" class="thtcolor"><b>Optional Information</b></normalfont> <smallfont color="#EEEEFF" class=thtcolor>All information will be viewable by other $bbtitle members.</smallfont></td>
</tr>
<tr>
        <td bgcolor="#1C5780"><b><normalfont>Homepage:</normalfont></b></td>
        <td bgcolor="#1C5780"><normalfont><input type="text" class="bginput" name="homepage" value="$bbuserinfo[homepage]" size="30" maxlength="200"></normalfont></td>
</tr>
<tr>
        <td bgcolor="#13486D"><b><normalfont>ICQ Number:</normalfont></b></td>
        <td bgcolor="#13486D"><normalfont><input type="text" class="bginput" name="icq" value="$bbuserinfo[icq]" size="30" maxlength="30"></normalfont></td>
</tr>
<tr bgcolor="#1C5780">
        <td><b><normalfont>AOL Instant Messenger Handle:</normalfont></b></td>
        <td><normalfont><input type="text" class="bginput" name="aim" value="$bbuserinfo[aim]" size="30" maxlength="30"></normalfont></td>
</tr>
<tr>
        <td bgcolor="#13486D"><b><normalfont>Yahoo Messenger Handle:</normalfont></b></td>
        <td bgcolor="#13486D"><normalfont><input type="text" class="bginput" name="yahoo" value="$bbuserinfo[yahoo]" size="30" maxlength="30"></normalfont></td>
</tr>
<tr>
        <td bgcolor="#1C5780" valign="top"><b><normalfont>Signature:</normalfont></b><br>
        <smallfont>Optional signature you may use to appear at bottom of your posts.</smallfont>
                <p><smallfont>HTML code is $htmlonoff<br>
                <a href="misc.php?s=$session[sessionhash]&action=bbcode">vB Code</A> is $bbcodeonoff<br>
                [img] code is $imgcodeonoff<br>
                <a href="misc.php?s=$session[sessionhash]&action=showsmilies">Smilies</a> are $smiliesonoff
                </smallfont></p></td>
        <td bgcolor="#1C5780"><textarea name="signature" rows="6" cols="40">$signature</textarea></td>
</tr>
$birthday
$customtext
<tr>
        <td bgcolor="#1D6AA0" colspan="2"><normalfont color="#EEEEFF" class="thtcolor"><b>Additional Information</b></normalfont></td>
</tr>
$customfields
<tr><td bgcolor="$bgcolor"><normalfont><b>Element Type:</b></normalfont><br>
                <smallfont>The Element type you want to be at the boards.</smallfont></td>
                <td bgcolor="$bgcolor"><normalfont>

                <select name="element">
                              $elementoptions
                </select>

                </normalfont></td>
                </tr>
<tr>
                <td bgcolor="$bgcolor"><normalfont><b>RPG Alignment:</b></normalfont><br>
                <smallfont>The side you want your character to be on the RPG.</smallfont></td>
                <td bgcolor="$bgcolor"><normalfont>
                    <select name="alignment" onchange="updateRaces()">
        $alignmentoptions
                    </select></normalfont></td>
</tr>
<tr>
                <td bgcolor="$bgcolor"><normalfont><b>RPG Race:</b></normalfont><br>
                <smallfont>The Race you want your character to be on the RPG.</smallfont></td>
                <td bgcolor="$bgcolor"><normalfont>
                            <select name="rpgrace">
        $raceoptions
                    </select></normalfont></td>
</tr>
<tr>
                <td bgcolor="$bgcolor"><normalfont><b>RPG Gender:</b></normalfont><br>
                <smallfont>This would be your RPG Character's Gender, not your gender in real life.</smallfont></td>
                <td bgcolor="$bgcolor"><normalfont>
                    <select name="rpggender" onchange="updateClasses()">
        $genderoptions
                    </select></normalfont></td>
</tr>

<tr>
                <td bgcolor="$bgcolor"><normalfont><b>RPG Class:</b></normalfont><br>
                <smallfont>The Class you want your character to be on the RPG.</td>
                <td bgcolor="$bgcolor"><smallfont>
                <select name="rpgclass" onchange="updateType()">
$classoptions
</select></smallfont>

</td>
</tr>
<tr>
<td bgcolor="$bgcolor"><normalfont><b>RPG Type:</b></normalfont><br><smallfont>Your type is automatically determined by your class.</smallfont></td>

<td bgcolor="$bgcolor" >
<input type="text" class="bginput" name="rpgtypename" value="$rpgtypename" length="30" READONLY><input type="hidden" name="rpgtypeid" value="$rpgtypeid">
</td>
</tr>
<tr>
                <td bgcolor="$bgcolor"><normalfont><b>Build Stats</b></normalfont><br>
                <smallfont>Click here if you want to have stats shown on the board.</smallfont></td>
                <td bgcolor="$bgcolor"><normalfont>
<input type="checkbox" name="updatestats">Update stats
                </normalfont></td>
                </tr>

</table>
</td></tr></table>

<br>

<table cellpadding="2" cellspacing="0" border="0" width="95%"  align="center">
<tr>
        <td align="center"><normalfont>
        <input type="hidden" name="action" value="updateprofile">
        <input type="submit" class="bginput" name="Submit" value="Submit Modifications" accesskey="s">
        <input type="reset" class="bginput" name="Reset" value="Reset Fields">
        </normalfont></td>
</tr>
</table>

</form>

$footer

</body>
</html>


RPGHost 06-14-2003 06:52 PM

Ack, never mind. It was in there twice. How it got there I'm not sure as it was a new install. I've removed it. Thanks!

James

Darkwaltz4 06-14-2003 09:50 PM

*cracks knuckles* okays, i guess i might read through pages 80-120 cause thats how long its been since i was here :-p and im going to try to list some of the bizzarre things ive put this hack through, and if i put an asterisk (*) by it, please dont ask me how to do it yet, its probably too complicated to explain here, or its still volatile, lol....also, ill probably forget like alot, mainly because a bunch i did before i broke the hack on my boards, like 3 months ago...

Summon-type items *
Summon Battle sequences *
PP Potions
PP Healing Center bit
Donation Queue
Registration points
Bank interest thing moved to global.php
Redid rpg stats to ~1000 x level=hp ~100 x level=ma/pp (really simple)
Added a mess of custom messages based on rpg type
Links to 'correct' itemshop based on type
Itemshop FAQ, link to it from itemshop
Target link to profile rpg section, so that i could link people to member.php?action=editprofile#rpg when they keep asking me where all the rpg stuff was >.< and 'edit ur profile' wasnt helping them...
Fixing blank password bug...
Changing all password fields to type='password' (looks nicer ;))
Random playing of battle midis on battlefight.php
Rewrote some of the stupid battle messages :-p like whos gunna meditate in a cave??? lmao (no offense ;))
Removed/replaced a bunch of links, like the 'update stats' checkbox with a link to the healing center...

there prolly more :-p and i guess im here to help *sigh* those strange problems everyone keeps having with the hack :-p

TheRaven57 06-14-2003 10:02 PM

Is there a way to make it so that people who own personal shops cannot create their own items? I would like it if they could just sell the items pre-made by the administration.

kaotic 06-14-2003 10:11 PM

@ Darkwaltz4: Could you explain how I can install..... everything that doesn't have an asterisk by it? :D

Mijae 06-15-2003 03:49 AM

Yes, you should release an addon :P


All times are GMT. The time now is 10:40 AM.

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.03602 seconds
  • Memory Usage 1,833KB
  • 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
  • (1)bbcode_code_printable
  • (6)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