vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 2.x Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=4)
-   -   Points Hack v1.0 With Donate (https://vborg.vbsupport.ru/showthread.php?t=43538)

PSI|Dr-X 09-13-2002 10:00 PM

Points Hack v1.0 With Donate
 
What does it do?
You can donate money to someone and moderator or admin can give money

You must run 2 query's and add 6 templates

Functions
The functions are:

Give Points to someone
Users can donate

Bugs
There are no bugs

Screenshot
You'll see the screenshot on the next post

PSI|Dr-X 09-14-2002 08:42 PM

Screenshot:

assassingod 09-14-2002 08:47 PM

Why does a points hack need a donate option?

Link14716 09-14-2002 08:49 PM

Code:

<a href="moderator.php?s=$session[sessionhash]&action=points&userid=$userinfo[userid]" target=_blank>
And yet this hack doesn't modify moderator.php.

Hmm..... suspicious.... ;)

EDIT:
Code:

$field = "field5";
require("./global.php");

And yet you run a query? I bet the query is useless and this is a Shinra Points rip. Oh, and you forgot two files.

assassingod 09-14-2002 08:56 PM

I was just about to post that Link14716.:) 2 files missin

Im not exactly a wizard at PHP, but I know mistakes when i see one. And there isnt anything related to moderator.php :p

Link14716 09-14-2002 09:04 PM

Let me see how identical this and shinra points are.....

Shinra:
Code:

$perms=getpermissions();
if (!$perms[ismoderator] and !$ismod=$DB_site->query_first("SELECT * FROM moderator WHERE userid=$bbuserinfo[userid]")) {
    echo "<p>You do not have permission to do this!</p>";
    exit;
  }

This:
Code:

$perms = getpermissions();
if (!$perms[ismoderator] and !$ismod = $DB_site->query_first("SELECT * FROM moderator WHERE userid=$bbuserinfo[userid]"))
{
echo "<p>You have no permission to do this</p>";
exit;
}

Shinra:
Code:

if ($HTTP_POST_VARS['action']=="dopoints") {
  $userpointstr=$DB_site->query_first("SELECT $pointfield FROM userfield WHERE userid=$userid");
  $pointstr = (int) $userpointstr[$pointfield];
  $userpoint = 0 + $pointstr;
  $pointamt = 0 + $amount;
  if ($pointamt==0) {
    $DB_site->query("UPDATE userfield SET $pointfield='$amount' WHERE userid=$userid");
    echo "The point field for $username has been set to $amount successfully.<p><p><font size=+1>You can now close this window.</font><br>";
  } else {
    $pointstr = ($userpoint + $pointamt);
    $DB_site->query("UPDATE userfield SET $pointfield='$pointstr' WHERE userid=$userid");
    echo "$username has been given $amount Points successfully.<p><p><font size=+1>You can now close this window.</font><br>";
  }
}

This:
Code:

if ($HTTP_POST_VARS['action'] == "addpoints")
{
$upoints = $DB_site->query_first("SELECT $field FROM userfield WHERE userid=$userid");
$pointsereg = (int) $upoints[$field];
$usrpoint = 0 + $pointsereg;
$pointamt = 0 + $pointsgiven;
$pointsereg = ($usrpoint + $pointamt);
$DB_site->query("UPDATE userfield SET $field = '$pointsereg' WHERE userid = $userid");
echo "You have given $username $pointsgiven Points successfully.<p><br>";
}

VERY identical, but this one looks like you included donate.php, let me try to find similarities in that file.......

PSI|Dr-X 09-14-2002 09:08 PM

I have only included the shinra's points hack and those querys are for the donate function because when i put it in a variabel it gave parse error and the 2 files those where missing was a mistake of me i was trying to make a installation for the templates but it gave a parse error too

[D]Vincent 09-14-2002 09:19 PM

Why do this? There's already two hacks like this. The Shinra one already has a donate add-on and the Gold one I converted all the current add-ons for it to use. THis is very pointless.

afterlab 09-14-2002 09:33 PM

Word up, DVincent.. :rambo: *kills hack*

Link14716 09-14-2002 09:38 PM

easy to avoid parse errors, add a semi-colon or a } somewhere.

*Furtherly kills hack.*


All times are GMT. The time now is 05:36 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01087 seconds
  • Memory Usage 1,735KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (6)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete