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 - feildmaster

Pages: 1 [2] 3 4 ... 9
16
Modifications / Re: Limited Carrying Items.
« on: September 01, 2007, 02:21:14 pm »
ah, i was having trouble using CDATA code on my packager. So I didn't include it unless it wouldn't work without the CDATA.

and i didn't know how the ID works. But yeah, the CDATA i wont include unless it's necessary to make it install.

also, who cares where queries go, it's better than making the text go in through source code. as long as it works, it is all fine.

oh n, sorry if i sound rude. But i never liked u anyway. I will not listen to ur pointers if a package is "valid"

17
General SMFShop Discussion / Re: Error In Installation
« on: August 30, 2007, 08:17:06 am »
alright so... the EASY way is to go ahead and install it... (i'd close the website down on maintenance)

then open the failed files, and the packages .xml or .mod file that changes the code in files.

Find in the code the file name, and do a search for a simplified version of the code it searches for.. EX: if it says..

'value' => 'this is something',

search for 'value'

position makes a difference. If it says "position = before" that means the added stuff will be added AFTER that code. if after it means BEFORE and replace... stays the same.

if u need more help just ask...

18
Items / Re: Postkiller PRO
« on: August 28, 2007, 07:19:41 am »
yeah... not gona use this any time soon...

19
Modifications / Re: Limited Carrying Items.
« on: August 28, 2007, 07:17:45 am »
That will be significantly after I finish all of the lottery mod stuff...

20
Requested additions / Re: HOW MUCH SPEND
« on: August 25, 2007, 03:10:14 am »
I can get u some code to do that in a bit... I just woke up n im still a bit tired.

21
Items / Re: New Idea
« on: August 25, 2007, 02:56:03 am »
mmm... if i wasn't so busy i'd make it for u...

22
General SMFShop Discussion / Re: Shop History?
« on: August 25, 2007, 02:53:36 am »
a shop history thing? Lol... I don't see much need for it myself...

23
Requested additions / Re: users change the colour ...
« on: August 24, 2007, 06:36:53 am »
yes

24
Requested additions / Re: users change the colour ...
« on: August 24, 2007, 01:44:56 am »
oh i see.... you have group color as well...

Let me add my code. It shows group color if they don't have a personalized style...

ok and this should b fine...

25
Requested additions / Re: users change the colour ...
« on: August 23, 2007, 05:21:13 am »
yes.

then attach those 2 files that got errors...

26
Requested additions / Re: users change the colour ...
« on: August 23, 2007, 02:14:10 am »
install it then attach those 2 files

29
General SMFShop Discussion / Re: Shop History?
« on: August 22, 2007, 03:21:24 am »
well... if he wants it to post every time simple use this code...

this ones for money...  goes before..
Code: [Select]
// Who the IM will come from in Shop-Send.php... (Sources/Shop)
Code: [Select]
require_once($sourcedir . '/Subs-Post.php');
$msgOptions = array();
  $msgOptions['id'] = 0;
  $msgOptions['subject'] = $membersName, 'has sent some money';
  $msgOptions['body']   = 'I have sent ',$amount,' money to ', $_POST['membername'] ,'.';
  $msgOptions['icon'] = 'thumbup';
  $msgOptions['smileys_enabled'] = true;
$topicOptions = array();
  $topicOptions['id'] = 0;
  $topicOptions['board'] = #;
  $topicOptions['poll'] = null;
  $topicOptions['lock_mode'] = null;
  $topicOptions['sticky_mode'] = null;
  $topicOptions['mark_as_read'] = false;
$posterOptions = array();
  $posterOptions['id'] = $ID_MEMBER;
  $posterOptions['name'] = $membersName;
  $posterOptions['update_post_count'] = false;
createPost($msgOptions, $topicOptions, $posterOptions);

change the "#" in " $topicOptions['board'] = #;" to what board it will post to...

now for items... search for this "// Set the new owner"
and place this code before it...
Code: [Select]
require_once($sourcedir . '/Subs-Post.php');
$msgOptions = array();
  $msgOptions['id'] = 0;
  $msgOptions['subject'] = $membersName, 'has sent an item';
  $msgOptions['body']   = 'I have sent  the item ',$rowItem['name'],' to ', $_POST['membername'] ,'.';
  $msgOptions['icon'] = 'thumbup';
  $msgOptions['smileys_enabled'] = true;
$topicOptions = array();
  $topicOptions['id'] = 0;
  $topicOptions['board'] = #;
  $topicOptions['poll'] = null;
  $topicOptions['lock_mode'] = null;
  $topicOptions['sticky_mode'] = null;
  $topicOptions['mark_as_read'] = false;
$posterOptions = array();
  $posterOptions['id'] = $ID_MEMBER;
  $posterOptions['name'] = $membersName;
  $posterOptions['update_post_count'] = false;
createPost($msgOptions, $topicOptions, $posterOptions);
once again change the "#" in  "$topicOptions['board'] = #;" to the board number...

30
General SMFShop Discussion / Re: Shop History?
« on: August 21, 2007, 12:25:46 pm »
no... in fact it doesn't even save that stuff... just sends... why would u want to monitor it that much anyway?

Pages: 1 [2] 3 4 ... 9