Log in

View Full Version : Petz: Give users points.


daniely
09-04-2004, 10:00 PM
Yay my first real hack! Er.... addon. Basicly this lets you give points to users via admincp. Okay, installation is simple.

File Edits: 3

First open admincp/user.php

Find:
// PROFILE FIELDS SECTION
print_table_header($vbphrase['user_profile_fields']);
$profilefields = $DB_site->query("SELECT * FROM " . TABLE_PREFIX . "profilefield ORDER by displayorder");
while ($profilefield = $DB_site->fetch_array($profilefields))
{
print_profilefield_row($profilefield, $userfield);
}

And add under:

//Give users points
print_table_break('', $INNERTABLEWIDTH);
print_table_header("Petz");
print_input_row("Points", "money", $user['money']);
//Give users points


Now Find:
'options',

And add under:
'money' => INT,

Finally, find:
if ($modifyavatar)
{
define('CP_REDIRECT', "usertools.php?do=avatar&userid=$userid");
}


And add above:

if ( $money ) {
$DB_site->query("UPDATE " . TABLE_PREFIX . "user SET money = '".$money."' WHERE userid = '".$userid."'");
}

And your done. Now enjoy the ability to give out points on will.

bonken
09-05-2004, 03:44 AM
any demo

Intex
09-05-2004, 07:25 AM
Nice work daniely.

Bonken - I don't think you're likely to get a demo as it's access to the AdminCP. Might be a good idea to show a quick screenshot though daniely.

daniely
09-05-2004, 10:12 AM
Your wish is my command

Intex
09-05-2004, 11:19 AM
Works a treat and saves me going into the DB to edit these. Good job daniely :cool:.

* Intex clicks INSTALL.

bad-dvir
09-05-2004, 12:07 PM
not work when i gave point and click save that do a db error.

daniely
09-05-2004, 12:58 PM
Send me the error and I will try to fix it.

Asso
09-06-2004, 08:22 AM
very nice :)

thanks for sharing

daniely
09-07-2004, 06:44 PM
Okay, bad-dvir your problem is in the third file edit. I think you placed it below rather then above.

TTG
09-11-2004, 08:12 PM
Am I missing something .. installed the new file changes and see nothing extra in AdminCP ... ?

TTG
09-12-2004, 12:00 PM
Am I missing something .. installed the new file changes and see nothing extra in AdminCP ... ?

Found it ..

You can change / add credits via the AdminCP > Petz > Bank Accounts > Edit.

Kinda makes this hack superfluous :rolleyes:

daniely
09-21-2004, 11:06 PM
Not quiet that alows you to edit the ammount in the bank account.

This edits the money they have on hand.

ashley53680
10-02-2004, 03:50 AM
wonderful!!

*install*

Roms
10-03-2004, 02:41 PM
Works great! *clicks install!

Ber|Art
10-15-2004, 08:14 AM
Hi, I installed the hack but also receive this error when filling in points in the "Occupation" Petz field, Biography, Location and Interests point fields are going OK?

Database error in vBulletin 3.0.3: Invalid SQL: UPDATE user SET money = 'xx' WHERE userid = 'y' mysql error: Unknown column 'money' in 'field list' mysql error number: 1054

__

daniely
10-15-2004, 08:44 PM
My guess is a wrong file edit.

Send me your files via PM and I'll look through them.