Anyways, I'm trying to install the RPG Battle Mod on my website and it says it was made here so I've come for help.
I'm at the part where I'm supposed to edit this string in sources/action_public/topics.php
CODE
$member['addresscard'] = $member['id'] ? $this->ipsclass->compiled_templates['skin_topic']->member_icon_vcard( $member['id'] ) : '';
by adding this after
CODE
include("./sources/urpg/topic.php");
(it's the last step before editing the html of a few pages through the ACP)
Anyways, the code I'm supposed to find isn't even in that file and It's a freshly installed forum so there are no other modifications that have erased it etc.
So what am I supposed to do? The closest thing to that that I can find is
CODE
{
//-----------------------------------------
// It's definitely a guest...
//-----------------------------------------
$poster = $this->ipsclass->set_up_guest( $row['author_name'] );
$poster['members_display_name'] = $this->ipsclass->vars['guest_name_pre'] . $row['author_name'] . $this->ipsclass->vars['guest_name_suf'];
$poster['_members_display_name'] = $this->ipsclass->vars['guest_name_pre'] . $row['author_name'] . $this->ipsclass->vars['guest_name_suf'];
$poster['custom_fields'] = "";
$poster['warn_text'] = "";
$poster['warn_minus'] = "";
$poster['warn_img'] = "";
$poster['warn_add'] = "";
$poster['addresscard'] = ""; <--- right there, the only place that even contains the words 'addresscard'
$poster['message_icon'] = "";
$poster['email_icon'] = "";
$row['name_css'] = 'unreg';
}
//-----------------------------------------
// It's definitely a guest...
//-----------------------------------------
$poster = $this->ipsclass->set_up_guest( $row['author_name'] );
$poster['members_display_name'] = $this->ipsclass->vars['guest_name_pre'] . $row['author_name'] . $this->ipsclass->vars['guest_name_suf'];
$poster['_members_display_name'] = $this->ipsclass->vars['guest_name_pre'] . $row['author_name'] . $this->ipsclass->vars['guest_name_suf'];
$poster['custom_fields'] = "";
$poster['warn_text'] = "";
$poster['warn_minus'] = "";
$poster['warn_img'] = "";
$poster['warn_add'] = "";
$poster['addresscard'] = ""; <--- right there, the only place that even contains the words 'addresscard'
$poster['message_icon'] = "";
$poster['email_icon'] = "";
$row['name_css'] = 'unreg';
}
I'm using IPB 2.3.0 which it says is compatible.
[edit] i'm using Unreal RPG 1.0 Beta, it's the only one I could find on invisionize if there is a newer one o.o
[edit2] I see you guys are using IPB 2.3.1 so someone must know something, cmon
Thanks in advance!
Edited by shrewsbury, 27 August 2007 - 08:09 AM.













