Thread: Add-On Releases - VBHSignature Maker
View Single Post
  #62  
Old 08-21-2010, 08:20 AM
micheal332001 micheal332001 is offline
 
Join Date: Apr 2004
Posts: 1,112
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by DAMINK View Post
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 ($image801017$color[1], $font'Total Posts: '.$postinfo[postcount]);
ImageTTFText ($image8010025$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.
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02233 seconds
  • Memory Usage 1,796KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_php
  • (1)bbcode_quote
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete