Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - xfollowthereaperx

Pages: [1] 2 3 ... 6
1
General SMFShop Discussion / Re: Some Ideas I'm kicking around...
« on: March 24, 2007, 12:21:47 pm »
"2. Rob the Bank item."

We already have that one?

2
Only thing is, once the member deletes the post, if they have zero credits would it go into the negativities?

I think Daniel15, once he has time, should set something up so that the member loses all their items or something. It would make things more interesting :3

3
General SMFShop Discussion / Re: Member Color Everywhere
« on: March 21, 2007, 07:50:09 am »
Any progress?

4
Items / Re: Insurance (Still needs work!)
« on: March 20, 2007, 10:21:51 am »
TechnoDragon, has anyone on your forums successfully used "robthebank" because it doesn't seem it let me successfully do it

5
Items / Re: Item Request: Change another user's display name
« on: March 16, 2007, 01:17:51 pm »
I found an error, there might be others

Name it ChangeOtherMessage.php

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_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'];
}

}

?>

6
General SMFShop Discussion / Re: Credits for referals
« on: March 16, 2007, 01:14:24 pm »
as in?

I think he means, if you give a name, you earn a few credits. Then again, anyone can give a name.
Exactly, I'm sure it's very possible

7
Items / Re: Insurance (Still needs work!)
« on: March 15, 2007, 12:03:06 pm »
Has anyone gotten one to work with Egg Avatar or Karma Bash?

8
General SMFShop Discussion / Re: SMFPets is Finally Here
« on: March 15, 2007, 11:51:37 am »

No problems here. My default skin is renamed and everything and I now use the WoW Theme by StormLrd.
And I can view the pets.

Maybe xfollowthereaperx can post a screenshot of a user profile?
I could but I'm not sure how that would help :p

Maybe someone can just post the code I need to edit into display.template.php

9
General SMFShop Discussion / Credits for referals
« on: March 10, 2007, 09:04:36 pm »
http://www.simplemachines.org/community/index.php?topic=150169.0

Can someone expand this modification? Thanks  :D

10
Items / Re: Insurance (Still needs work!)
« on: March 10, 2007, 08:46:18 pm »
actually no...it seems to be working fine on my forum...let me attach my version and see if that fixes it for you...just remember to change the board number in the code for the item
Thanks so much

11
General SMFShop Discussion / Re: SMFPets is Finally Here
« on: March 09, 2007, 05:01:45 am »
You need to have the default skin. If you don't--just look at the profile.template file for the default skin and manually apply the same changes to your skin.
Im not sure if you're talking to me but I just looked at my default skin and it didn't have view pets

I installed the 0.0 pets without adding any codes or modifying anything

12
General SMFShop Discussion / Re: SMFPets is Finally Here
« on: March 08, 2007, 06:29:07 am »
I'm a little confused with all the codes going around and I'd like to use some of the new things like viewing people's pets

Ya dont have to code dude. You van view peoples pets bij clikcing on their forum name en clicking on the "view pet" link beneath their profile.

Whose forum has it?  :P

13
Items / Re: Insurance (Still needs work!)
« on: March 08, 2007, 06:26:05 am »
Yes, it is

If you want I can check which error, but I'm sure you know what error it is anyways :p

14
General SMFShop Discussion / Re: SMFPets is Finally Here
« on: March 07, 2007, 07:31:50 am »
Hello guys, is there any updates packaged? I'm a little confused with all the codes going around and I'd like to use some of the new things like viewing people's pets

15
Items / Re: Insurance (Still needs work!)
« on: March 05, 2007, 10:37:08 am »
The Rob the Bank item you uploaded isn't working for me :(

Pages: [1] 2 3 ... 6