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

Pages: [1]
1
General SMFShop Discussion / How can I restart all the credits?
« on: December 17, 2009, 03:43:46 am »
I what to delite all the credits of my forum to make them 0.00. How can I do it? Do I have to run something in phpmyadmin?

2
SMFShop Announcements / Re: SMF Shop 3.1.5 Updated
« on: November 24, 2009, 09:43:49 pm »
THANKS A LOT, But we need the SMFShop Inventory Post Modification for this version!


We all are waiting for it! (¡WE WHANT TO DISPLAY THE ITEMS!)

3
SMFShop Announcements / Re: SMF Shop 3.1.4 with SMF 2.0 RC2 Support
« on: November 15, 2009, 09:06:33 pm »
THANKS A LOT, But where can I find the SMFShop Inventory Post Modification for this version?

SMFPets, lotery , SMFShop Stats Modification are very important too, please update the modifications...

4
Requested additions / Re: Admin can choose amount of money
« on: June 28, 2009, 02:05:18 am »
Is there a way that the admin can choose the amount of money a certain person gets? Including him/herself.

You can edit the inventory of every user at the admin panel(items-money). But if you mean if it is posible that depending of the member group they win diferent amouts of credits, no it isn´t

5
Modifications / Re: [MOD] Administration SMF Shop.
« on: June 14, 2009, 07:59:44 pm »
Lokitox, muchas gracias por el aporte. Desde hace tiempo que se pedia  ;)
Estoy para servirlos, tranquilo.

I am to serve them, relaxed

Pues ya estas tardando en colgar tus Items  ;D
Me gustaría hablar contigo, ¿Podrias enviarme tu msn por MP?

6
Modifications / Re: [MOD] Administration SMF Shop.
« on: June 10, 2009, 07:59:47 am »
Lokitox, muchas gracias por el aporte. Desde hace tiempo que se pedia  ;)

7
Items / Re: Where do you install Items?
« on: February 08, 2009, 05:47:11 pm »
upload it your self. Open your ftp program and go there yourforum-->sources-->shop-->items

Upload the .php of the items there and then they will be instaled.  ;)

8
General SMFShop Discussion / Re: SMFShop for SMF 2.0 Beta 4 and RC1
« on: February 08, 2009, 06:11:29 am »
It works fine.... But, how can I take out the items from the trade center?¿

9
General SMFShop Discussion / Take out Items from the trade center.
« on: January 31, 2009, 05:45:46 am »
Hello to all  :crazy2:,
My forum haves about 6000 users. My problem is that the trade center is full with items that dont get saled and stay there there for weeks (Many times more than 600 items are there in the list). What I what to do is to take off all the items in the trade center every 2 or 3 days....

How can I do that?¿

Pd: sorry for my bad english

10
Coding / Re: How to get credits for Referrals (Using Referrals Mod)
« on: January 30, 2009, 08:24:09 am »
I dont find it...

Here is my code of register.php

Quote
   // Referrals Mod
   // If they emptied it, don't do referral information
   if(!empty($_POST['referredby']))
   {
      // We may need this
      global $context, $sourcedir;
      require_once($sourcedir . '/Referrals.php');

      // If there was a referrer, is it the same one
      if(!empty($context['referrals']) && strtolower($_POST['referredby']) == strtolower($context['referrals']['referred_by_name']))
      {
         $referrer = (int) $context['referrals']['referred_by_id'];
         $regOptions['extra_register_vars']['referred_by'] = $referrer;
         $regOptions['extra_register_vars']['referred_on'] = (int) $context['referrals']['referred_timestamp'];
         $referral = 1;
      }
      else
      {
         // No they changed it, so we've got to find this user
         $referrer = checkReferrerExists($_POST['referredby'], 'name');
                  
         // Referrer by that name not found, so fatal error and force them to check (its better than ignoring it)
         if(empty($referrer))
            fatal_lang_error('referrals_referrer_not_found', false);

11
Modifications / Re: SMF Lottery Mod
« on: January 14, 2009, 09:09:24 pm »
for the drawing, you would setup a cron or manually run the file to complete the lottery

Could someone tell me how to manually run the file?

Thanks!  :)

I am interested in this too.... THANKS

12
General SMFShop Discussion / Re: HELP ME IN SPANISH
« on: January 14, 2009, 09:04:54 pm »
Sorry por hablar español pero ocupo saber si hay alguna manera de darle permisos a otro rango que no sea administrador de poder administrar la shop?
Pues, por ahora no. Yo he extraido está parte del código del mod "awards" que sirbe exactamente para lo que estas buscando. Si sabes algo de programación tal vez sepas adaptarlo.
Quote
   <file name="$sourcedir/Admin.php">
      <operation>
         <search position="before" whitespace="exact"><![CDATA[   isAllowedTo(array('admin_forum', 'manage_permissions', 'moderate_forum', 'manage_membergroups', 'manage_bans', 'send_mail', 'edit_news', 'manage_boards', 'manage_smileys', 'manage_attachments']]></search>
         <add><![CDATA[, 'manage_awards']]></add>
      </operation>
   </file>

   <file name="$sourcedir/Subs.php">
      <operation>
         <search position="after"><![CDATA[   $context['in_maintenance'] = !empty($maintenance);]]></search>
         <add><![CDATA[   $context['allow_admin'] .= allowedTo('manage_awards');

]]></add>
      </operation>

      <operation>
         <search position="before"><![CDATA[      if (!empty($modSettings['modlog_enabled']))
         $context['admin_areas']['maintenance']['areas']['view_moderation_log'] = '<a href="' . $scripturl . '?action=modlog">' . $txt['modlog_view'] . '</a>';
   }]]></search>
         <add><![CDATA[

   // Category for admin panel.  Pogo Awards
   if ((isset($modSettings['admin_areas_other']) && $modSettings['admin_areas_other'] == 1) && allowedTo('manage_awards'))
   {
      $context['admin_areas']['other']['areas']['awards_admin'] = '<a href="' . $scripturl . '?action=awards">' . $txt['awards'] . '</a>';
   }
   elseif (!isset($modSettings['admin_areas_other']) || (isset($modSettings['admin_areas_other']) && $modSettings['admin_areas_other'] == 0) && allowedTo('manage_awards'))
   {
      $context['admin_areas']['awards_admin'] = array(
         'title' =>  $txt['pa_mods'],
         'areas' => array(
            'awards_admin' => '<a href="' . $scripturl . '?action=awards">' . $txt['awards'] . '</a>',
         ),
      );
   }]]></add>
      </operation>
   </file>

13
General SMFShop Discussion / Re: membergroup permissions
« on: January 14, 2009, 09:02:13 pm »
I am interested to aply it too. I took this code from the awards mod that its to do that for the permissions, maybe it will help a programer to do it:

Quote
   <file name="$sourcedir/Admin.php">
      <operation>
         <search position="before" whitespace="exact"><![CDATA[   isAllowedTo(array('admin_forum', 'manage_permissions', 'moderate_forum', 'manage_membergroups', 'manage_bans', 'send_mail', 'edit_news', 'manage_boards', 'manage_smileys', 'manage_attachments']]></search>
         <add><![CDATA[, 'manage_awards']]></add>
      </operation>
   </file>

   <file name="$sourcedir/Subs.php">
      <operation>
         <search position="after"><![CDATA[   $context['in_maintenance'] = !empty($maintenance);]]></search>
         <add><![CDATA[   $context['allow_admin'] .= allowedTo('manage_awards');

]]></add>
      </operation>

      <operation>
         <search position="before"><![CDATA[      if (!empty($modSettings['modlog_enabled']))
         $context['admin_areas']['maintenance']['areas']['view_moderation_log'] = '<a href="' . $scripturl . '?action=modlog">' . $txt['modlog_view'] . '</a>';
   }]]></search>
         <add><![CDATA[

   // Category for admin panel.  Pogo Awards
   if ((isset($modSettings['admin_areas_other']) && $modSettings['admin_areas_other'] == 1) && allowedTo('manage_awards'))
   {
      $context['admin_areas']['other']['areas']['awards_admin'] = '<a href="' . $scripturl . '?action=awards">' . $txt['awards'] . '</a>';
   }
   elseif (!isset($modSettings['admin_areas_other']) || (isset($modSettings['admin_areas_other']) && $modSettings['admin_areas_other'] == 0) && allowedTo('manage_awards'))
   {
      $context['admin_areas']['awards_admin'] = array(
         'title' =>  $txt['pa_mods'],
         'areas' => array(
            'awards_admin' => '<a href="' . $scripturl . '?action=awards">' . $txt['awards'] . '</a>',
         ),
      );
   }]]></add>
      </operation>
   </file>

Pages: [1]