Quote:
Originally Posted by DAMINK
Why is this mod not taken to the next level?
Like Mybb did i hate to say it. I did make a thread about it but no takers as per normal.
Bug a sig that could pull specs from the forum would be gold mate.
Like this!!
Simple yet very damn effective. Comeon VB community. Why dont we have one?
Were not all about spamming the net. Some like to use old school methods damn it.
|
This could be made without any problems and would not need any flash code.
All you would need to do is use a simple php code that can make the image with the GD function.
Within the files for this script you would be able to make suce a system very easy.
PHP Code:
<?php
// Created by Adam Khoury @ www.developphp.com
// Connect to the database first thing
define('THIS_SCRIPT', 'signature');
define('signature_SCRIPT', true);
$phrasegroups = array();
$specialtemplates = array();
$globaltemplates = array();
$actiontemplates = array();
require_once('./global.php');
require_once(DIR . '/includes/functions.php');
$hexcolor = str_split("FFFFFF", 2);
// Convert HEX values to DECIMAL
$bincolor[0] = hexdec("0x{$hexcolor[0]}");
$bincolor[1] = hexdec("0x{$hexcolor[1]}");
$bincolor[2] = hexdec("0x{$hexcolor[2]}");
//Get your database info you want to use here
$postinfo= $vbulletin->db->query_first("SELECT * FROM " . TABLE_PREFIX . "DATABASE TABLE HERE");
$threadinfo= $vbulletin->db->query_first("SELECT * FROM " . TABLE_PREFIX . "DATABASE TABLE HERE");
// create the image using your own background
$image = imagecreatefromjpeg("backgroundimage.jpg");
// dimensions of the image used
$img_width = 240;
$img_height = 25;
$font = "verdana.ttf";
// set the colours
$color[1] = imagecolorallocate($image, $bincolor[0], $bincolor[1], $bincolor[2]);
// now i will create a line with font size 8, with no angle, 10 pixels to the right, and 17 pixels down
ImageTTFText ($image, 8, 0, 10, 17, $color[1], $font, 'Total Posts: '.$postinfo[postcount]);
ImageTTFText ($image, 8, 0, 100, 25, $color[1], $font, 'Total Threads: '.$threadinfo[threadcount]);
// output and destroy
header( 'Content-type: image/jpeg' );
imagepng($image);
imagedestroy($image);
?>
Hope this gives you a good start on what you want.