should be easy enough to other the Change Other's Title item.have you thought about trying this one your self?would be a cool way to learn a little php? and mysql?
<?php/*********************************************************************************** SMFShop item ************************************************************************************* SMFShop: Shop MOD for Simple Machines Forum ** =============================================================================== ** Software Version: SMFShop 3.0 (Build 12) ** $Date:: 2007-01-18 19:26:55 +1100 (Thu, 18 Jan 2007) $ ** $Id:: ChangeOtherTitle.php 79 2007-01-18 08:26:55Z daniel15 $ ** Software by: DanSoft Australia (http://www.dansoftaustralia.net/)** Copyright 2005-2007 by: DanSoft Australia (http://www.dansoftaustralia.net/)** Support, News, Updates at: http://www.dansoftaustralia.net/ ** ** Forum software by: Simple Machines (http://www.simplemachines.org) ** Copyright 2006-2007 by: Simple Machines LLC (http://www.simplemachines.org) ** 2001-2006 by: Lewis Media (http://www.lewismedia.com) ************************************************************************************* This program is free software; you may redistribute it and/or modify it under ** the terms of the provided license as published by Simple Machines LLC. ** ** This program is distributed in the hope that it is and will be useful, but ** WITHOUT ANY WARRANTIES; without even any implied warranty of MERCHANTABILITY ** or FITNESS FOR A PARTICULAR PURPOSE. ** ** See the "license.txt" file for details of the Simple Machines license. ** The latest version of the license can always be found at ** http://www.simplemachines.org. ***********************************************************************************/if (!defined('SMF')) die('Hacking attempt...');class item_ChangeOtherDisplayName extends itemTemplate{ function getItemDetails() { $this->authorName = 'Max'; $this->authorWeb = 'http://TheGaff.net/Forums'; $this->authorEmail ='webmaster@thegaff.net'; $this->name = 'Change Other Member\'s Display Name'; $this->desc = 'Change someone else\'s Display Name'; $this->price = 300; $this->require_input = true; $this->can_use_item = true; } function getUseInput() { global $context, $scripturl, $settings, $txt; return 'User\'s name: <input type="text" name="username" size="50" /> <a href="' . $scripturl . '?action=findmember;input=username;quote=0;sesc=' . $context['session_id'] . '" onclick="return reqWin(this.href, 350, 400);"><img src="' . $settings['images_url'] . '/icons/assist.gif" border="0" alt="' . $txt['find_members'] . '" /> Find Member</a><br /> New Display Name: <input type="text" name="newdisplayname" size="50" />'; } function onUse() { global $db_prefix; if (!isset($_POST['username'])) die('ERROR: Please enter a username!'); if (!isset($_POST['newdisplayname'])) die('ERROR: Please enter a new display name!'); // This code from PersonalMessage.php5. It trims the " characters off the membername posted, // and then puts all names into an array $_POST['username'] = strtr($_POST['username'], array('\\"' => '"')); preg_match_all('~"([^"]+)"~', $_POST['username'], $matches); $userArray = array_unique(array_merge($matches[1], explode(',', preg_replace('~"([^"]+)"~', '', $_POST['username'])))); // We only want the first memberName found $user = $userArray[0]; $result = db_query(" UPDATE {$db_prefix}members SET realName = '{$_POST['newdisplayname']}' WHERE memberName = '$user'", __FILE__, __LINE__); return 'Successfully changed ' . $user . '\'s Personal name to ' . $_POST['newdisplayname']; }}?>
Its not that hard really, with a bit of sql knowledge... Alto the "Find Member" option dosent work, it will pop up the window but it dosent save the name in the User's name input box! Code: [Select]<?php/*********************************************************************************** SMFShop item ************************************************************************************* SMFShop: Shop MOD for Simple Machines Forum ** =============================================================================== ** Software Version: SMFShop 3.0 (Build 12) ** $Date:: 2007-01-18 19:26:55 +1100 (Thu, 18 Jan 2007) $ ** $Id:: ChangeOtherTitle.php 79 2007-01-18 08:26:55Z daniel15 $ ** Software by: DanSoft Australia (http://www.dansoftaustralia.net/)** Copyright 2005-2007 by: DanSoft Australia (http://www.dansoftaustralia.net/)** Support, News, Updates at: http://www.dansoftaustralia.net/ ** ** Forum software by: Simple Machines (http://www.simplemachines.org) ** Copyright 2006-2007 by: Simple Machines LLC (http://www.simplemachines.org) ** 2001-2006 by: Lewis Media (http://www.lewismedia.com) ************************************************************************************* This program is free software; you may redistribute it and/or modify it under ** the terms of the provided license as published by Simple Machines LLC. ** ** This program is distributed in the hope that it is and will be useful, but ** WITHOUT ANY WARRANTIES; without even any implied warranty of MERCHANTABILITY ** or FITNESS FOR A PARTICULAR PURPOSE. ** ** See the "license.txt" file for details of the Simple Machines license. ** The latest version of the license can always be found at ** http://www.simplemachines.org. ***********************************************************************************/if (!defined('SMF')) die('Hacking attempt...');class item_ChangeOtherDisplayName extends itemTemplate{ function getItemDetails() { $this->authorName = 'Max'; $this->authorWeb = 'http://TheGaff.net/Forums'; $this->authorEmail ='webmaster@thegaff.net'; $this->name = 'Change Other Member\'s Display Name'; $this->desc = 'Change someone else\'s Display Name'; $this->price = 300; $this->require_input = true; $this->can_use_item = true; } function getUseInput() { global $context, $scripturl, $settings, $txt; return 'User\'s name: <input type="text" name="username" size="50" /> <a href="' . $scripturl . '?action=findmember;input=username;quote=0;sesc=' . $context['session_id'] . '" onclick="return reqWin(this.href, 350, 400);"><img src="' . $settings['images_url'] . '/icons/assist.gif" border="0" alt="' . $txt['find_members'] . '" /> Find Member</a><br /> New Display Name: <input type="text" name="newdisplayname" size="50" />'; } function onUse() { global $db_prefix; if (!isset($_POST['username'])) die('ERROR: Please enter a username!'); if (!isset($_POST['newdisplayname'])) die('ERROR: Please enter a new display name!'); // This code from PersonalMessage.php5. It trims the " characters off the membername posted, // and then puts all names into an array $_POST['username'] = strtr($_POST['username'], array('\\"' => '"')); preg_match_all('~"([^"]+)"~', $_POST['username'], $matches); $userArray = array_unique(array_merge($matches[1], explode(',', preg_replace('~"([^"]+)"~', '', $_POST['username'])))); // We only want the first memberName found $user = $userArray[0]; $result = db_query(" UPDATE {$db_prefix}members SET realName = '{$_POST['newdisplayname']}' WHERE memberName = '$user'", __FILE__, __LINE__); return 'Successfully changed ' . $user . '\'s Personal name to ' . $_POST['newdisplayname']; }}?>
<?php/*********************************************************************************** SMFShop item ************************************************************************************* SMFShop: Shop MOD for Simple Machines Forum ** =============================================================================== ** Software Version: SMFShop 3.0 (Build 12) ** $Date:: 2007-01-18 19:26:55 +1100 (Thu, 18 Jan 2007) $ ** $Id:: ChangeOtherTitle.php 79 2007-01-18 08:26:55Z daniel15 $ ** Software by: DanSoft Australia (http://www.dansoftaustralia.net/)** Copyright 2005-2007 by: DanSoft Australia (http://www.dansoftaustralia.net/)** Support, News, Updates at: http://www.dansoftaustralia.net/ ** ** Forum software by: Simple Machines (http://www.simplemachines.org) ** Copyright 2006-2007 by: Simple Machines LLC (http://www.simplemachines.org) ** 2001-2006 by: Lewis Media (http://www.lewismedia.com) ************************************************************************************* This program is free software; you may redistribute it and/or modify it under ** the terms of the provided license as published by Simple Machines LLC. ** ** This program is distributed in the hope that it is and will be useful, but ** WITHOUT ANY WARRANTIES; without even any implied warranty of MERCHANTABILITY ** or FITNESS FOR A PARTICULAR PURPOSE. ** ** See the "license.txt" file for details of the Simple Machines license. ** The latest version of the license can always be found at ** http://www.simplemachines.org. ***********************************************************************************/if (!defined('SMF')) die('Hacking attempt...');class item_ChangeOtherMessage extends itemTemplate{ function getItemDetails() { $this->authorName = 'Max'; $this->authorWeb = 'http://TheGaff.net/Forums'; $this->authorEmail ='webmaster@thegaff.net'; $this->name = 'Change Other Member\'s Display Name'; $this->desc = 'Change someone else\'s Display Name'; $this->price = 300; $this->require_input = true; $this->can_use_item = true; } function getUseInput() { global $context, $scripturl, $settings, $txt; return 'User\'s name: <input type="text" name="username" size="50" /> <a href="' . $scripturl . '?action=findmember;input=username;quote=0;sesc=' . $context['session_id'] . '" onclick="return reqWin(this.href, 350, 400);"><img src="' . $settings['images_url'] . '/icons/assist.gif" border="0" alt="' . $txt['find_members'] . '" /> Find Member</a><br /> New Display Name: <input type="text" name="newdisplayname" size="50" />'; } function onUse() { global $db_prefix; if (!isset($_POST['username'])) die('ERROR: Please enter a username!'); if (!isset($_POST['newdisplayname'])) die('ERROR: Please enter a new display name!'); // This code from PersonalMessage.php5. It trims the " characters off the membername posted, // and then puts all names into an array $_POST['username'] = strtr($_POST['username'], array('\\"' => '"')); preg_match_all('~"([^"]+)"~', $_POST['username'], $matches); $userArray = array_unique(array_merge($matches[1], explode(',', preg_replace('~"([^"]+)"~', '', $_POST['username'])))); // We only want the first memberName found $user = $userArray[0]; $result = db_query(" UPDATE {$db_prefix}members SET realName = '{$_POST['newdisplayname']}' WHERE memberName = '$user'", __FILE__, __LINE__); return 'Successfully changed ' . $user . '\'s Personal name to ' . $_POST['newdisplayname']; }}?>