K, it should make a log of all things said into it
http://harry.talkflack.com/sig.gif/textall.txt
Enjoy looking at all the abuseIt will limit that to only 50 lines though, so it won't make a huge file. (Though I doubt people will abuse it)
Fixed the escape char problem when someone did a ' symbol.
Update: Temporary disabled until I work a few things out with Wizzup.
Reenabled nao
Last edited by Harry; 05-02-2009 at 03:18 AM.
Send SMS messages using Simba
Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!
Mah IRC name is in teh link. o.O
Hi ya guize! I got it re-enabled now.
![]()
Send SMS messages using Simba
Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!
The last line is now right-aligned, thanks to Freddy1990 ^_^
Also, I am considering making it Open-Sauce. Any comments on that idea?
Only problem I see with that is tons of nubs using it, it will feel less 'special' to me (:
Last edited by Harry; 05-06-2009 at 05:06 AM.
Send SMS messages using Simba
Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!
I think share the sauce in the members section
Love it though
T~M
Send SMS messages using Simba
Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!
so if i say its yours then i can have it in my sig?
~shut
Last edited by Shuttleu; 05-08-2009 at 07:55 AM.
All my scripts are held on Googlecode git, so if you ever see a problem, fork it and send me a pull request
If a script is grey, it doesn't work, if it's colour then it does!
My Tutorials:-
Everything you need to know about setting up Simba, SRL and Reflection!, How to sort out the MSVCR71.dll error
How to set up players for autoing with Simba, SRL/Simba Standards (with examples), Defines
Auto Updater and Git, Using a testing branch for git, Adding SRL Stats to your script
Creating your own font set for Simba, Guide to Cups, How to make 1.45M (RSGP) a day (not really my tut)
Download a image and set it as your Desktop Wallpaper in C#, How to make your first PHP file uploader
<Coh3n> Shuttleu, fuck I love you right now
Sure, feel free to.I just do not want a ton of people using the PHP code if I was to post it, then making their own bot idle at IRC as a total rip-off of this project.
Send SMS messages using Simba
Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!
ty
all done
~shut
All my scripts are held on Googlecode git, so if you ever see a problem, fork it and send me a pull request
If a script is grey, it doesn't work, if it's colour then it does!
My Tutorials:-
Everything you need to know about setting up Simba, SRL and Reflection!, How to sort out the MSVCR71.dll error
How to set up players for autoing with Simba, SRL/Simba Standards (with examples), Defines
Auto Updater and Git, Using a testing branch for git, Adding SRL Stats to your script
Creating your own font set for Simba, Guide to Cups, How to make 1.45M (RSGP) a day (not really my tut)
Download a image and set it as your Desktop Wallpaper in C#, How to make your first PHP file uploader
<Coh3n> Shuttleu, fuck I love you right now
To be honest I just want to see how you did the image writing...
Sure thing captn.
PHP Code:$lines = explode("\n",file_get_contents('text.txt'));
Hopefully you can understand thatPHP Code:$img = imagecreate(512, 100);
imagecolortransparent($img, $bg);
$x = XOFFSET;
$y = YOFFSET;
foreach ($lines as $line)
{
$output = array();
$line = stripslashes($line);
$color = 1;
$parts = explode(".", $line);
for ($i = 0; $i < count($parts); $i++)
{
$part = $parts[$i];
if ($i > 0) // Always skip first element because of the explode
{
if (ereg("^[0-1][0-9]?", $part, $code) && $code[0] <= count($colorTable)-1) // if this part has a code
{
$part = substr($part, strlen($code[0])); // strip code
$color = intval($code[0]);
}
else
{
$output[$i-1][0] .= ".";
$color = 1;
}
}
$output[$i] = array($part,$color);
}
foreach($output as $temp) {
imagestring($img, FONT, $x, $y, $temp[0], AllocateMircColor($temp[1]));
$x += (strlen($temp[0])*WIDTH);
}
$x = XOFFSET;
$y += HEIGHT;
}
//$IPADDR = '255.255.255.255';
imagestring($img, FONT, XOFFSET + 102 - strlen($IPADDR) * 5, $y,
" Hey there " . $IPADDR .", you are the " . $count[1] . "th hit to my signature :)", AllocateMircColor(13));
MakeBorder($img, AllocateMircColor(4)); // my own little func, not for you :D
header("Expires: Mon, 5 Jun 1999 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Content-type: image/gif");
imagegif($img); // sends to browser
imagedestroy($img);
![]()
![]()
Send SMS messages using Simba
Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!
what is all that for?PHP Code:header("Expires: Mon, 5 Jun 1999 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Content-type: image/gif");
~shut
All my scripts are held on Googlecode git, so if you ever see a problem, fork it and send me a pull request
If a script is grey, it doesn't work, if it's colour then it does!
My Tutorials:-
Everything you need to know about setting up Simba, SRL and Reflection!, How to sort out the MSVCR71.dll error
How to set up players for autoing with Simba, SRL/Simba Standards (with examples), Defines
Auto Updater and Git, Using a testing branch for git, Adding SRL Stats to your script
Creating your own font set for Simba, Guide to Cups, How to make 1.45M (RSGP) a day (not really my tut)
Download a image and set it as your Desktop Wallpaper in C#, How to make your first PHP file uploader
<Coh3n> Shuttleu, fuck I love you right now
That portion of the code defines the properties of the image, so people with fail browsers do not get errorsIt also defines the properties, such as to not cache the image in their browser.
Send SMS messages using Simba
Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!
SOURCE?! YOU CAN HAShttp://www.hawkee.com/snippet/6139/
Enjoy, please do not use it here though, I only released so you could learn off the source code.![]()
Send SMS messages using Simba
Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!
Nice.. you finally posted source! Good way to go.![]()
Send SMS messages using Simba
Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!
Send SMS messages using Simba
Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!
I thought you said you dont know php >.<
The code is pretty easy to find out
Should I post it?
EDIT : Wait I shouldn't... Can I put it in my sig and.... Wait my sig is full lol... I have to think of a new one...
Last edited by nahiyan; 07-11-2009 at 11:38 PM.
Lag is my enemy and also friend. Without lag, I would've lost 200k...
I was just hanging around in bounty world in the graveyard...
With a person hanging around too... Then the person left...
And came a PKing clan...
But lag came to my rescue and saved me by lagging!!!
There are currently 1 users browsing this thread. (0 members and 1 guests)