• Hail Guest!
    We're looking for Community Content Contribuitors to Stratics. If you would like to write articles, fan fiction, do guild or shard event recaps, it's simple. Find out how in this thread: Community Contributions
  • Greetings Guest, Having Login Issues? Check this thread!
  • Hail Guest!,
    Please take a moment to read this post reminding you all of the importance of Account Security.
  • Hail Guest!
    Please read the new announcement concerning the upcoming addition to Stratics. You can find the announcement Here!

Sigil makers

H

HaHa

Guest
Any out there, was curious what type of sig someone could do for me.
 

Norrar

Lore Master
Stratics Veteran
Stratics Legend
UNLEASHED
PM Salmar with what you want on it. Did a great job for me! :thumbsup:
 
H

HaHa

Guest
You definitely got a good one there, but im lookin for someone who knows me a little bit to make one
 
G

Goron

Guest
A sigil is the thing that sits on a monolith.
A signiture is the thing that sits beneath a post.

So you are looking for a *sig* or *signature* maker:)
 
S

Shakaja

Guest
Any out there, was curious what type of sig someone could do for me.

so you finally realized, there is no way the pics you crop together to call it a sig gonna make it through mod approval?
 

Kat

Crazed Zealot
Stratics Veteran
Stratics Legend
Well, at the rate we get new players to Siege, there's always gonna be at least ONE person who doesn't know him, that might be foolish enough to click on one of his links! The other 9 of us know better. :p
 

Kat

Crazed Zealot
Stratics Veteran
Stratics Legend



That's the last one I'm gonna do. I know him too well to come up with anything else! :eyes:
 

Lord_Puffy

Crazed Zealot
Stratics Veteran
Stratics Legend
Well, at the rate we get new players to Siege, there's always gonna be at least ONE person who doesn't know him, that might be foolish enough to click on one of his links! The other 9 of us know better. :p
lol whats that make me if i know better and still open them :p :danceb:
 
H

HaHa

Guest
found two that i gotta have, how do i make it where i can use more than one sig?
 
C

Corrupted Goblin

Guest
You have to be a stratics plus user. otherwise you only get one
 

Petra Fyde

Peerless Chatterbox
Alumni
Stratics Veteran
Stratics Legend
Currently you can't, which is why I'm using my 'Petra Fyde' sig everywhere instead of my 'Molly Fyde' sig here :(.

It's on the list of things to ask for when the craziness of getting everything actually working again is over.
 

Petra Fyde

Peerless Chatterbox
Alumni
Stratics Veteran
Stratics Legend
Use them alternate weeks and just swap them over for now.

Which one are you going to use first???
 

AEowynSP

Certifiable
Stratics Veteran
Stratics Legend
Hey puffy who's the turtle lokking guy in your avitar? Reminds me of the guy from aliens 2 or 3 who was in for multipule crimes against women.
 
O

Ole Cheapy

Guest
Can someone hook me up with a sig too plz? But i am a lot harder to please than, Haha.
 
H

HaHa

Guest
a sig for u? thats scary:p
Remember when i made one for myself when we were in BG? God that was a good one... why the hell does photobucket have rules against that anway..




Can you edit out the mysts mom comment on this one? I try not to offend anyone ya know?
 
M

Mechanic

Guest


this is what I am working on , not really near what you deserve, but some things can not be posted on a public forum.

not really finished either.
 

Spree

Babbling Loonie
Stratics Veteran
Stratics Legend
You have to be a stratics plus user. otherwise you only get one
There is no Stratics Plus right now...but the new forum has some built in features that Plus used to have exclusively.

-Skylark
I seen some rotating sigs on other php boards. But you need to have Geek skills to do it. I did a google search and found this script


Step 1)

Gather your collection of sigs.

Step 2)

Put them all in one folder on your webserver.

Step 3)

Cut and paste the below code in tyour favourite text editor:


<?php

*/

$extList = array();
$extList['gif'] = 'image/gif';
$extList['jpg'] = 'image/jpeg';
$extList['jpeg'] = 'image/jpeg';
$extList['png'] = 'image/png';


// You don't need to edit anything after this point.


// --------------------- END CONFIGURATION -----------------------

$img = null;

if (substr($folder,-1) != '/') {
$folder = $folder.'/';
}

if (isset($_GET['img'])) {
$imageInfo = pathinfo($_GET['img']);
if (
isset( $extList[ strtolower( $imageInfo['extension'] ) ] ) &&
file_exists( $folder.$imageInfo['basename'] )
) {
$img = $folder.$imageInfo['basename'];
}
} else {
$fileList = array();
$handle = opendir($folder);
while ( false !== ( $file = readdir($handle) ) ) {
$file_info = pathinfo($file);
if (
isset( $extList[ strtolower( $file_info['extension'] ) ] )
) {
$fileList[] = $file;
}
}
closedir($handle);

if (count($fileList) > 0) {
$imageNumber = time() % count($fileList);
$img = $folder.$fileList[$imageNumber];
}
}

if ($img!=null) {
$imageInfo = pathinfo($img);
$contentType = 'Content-type: '.$extList[ $imageInfo['extension'] ];
header ($contentType);
readfile($img);
} else {
if ( function_exists('imagecreate') ) {
header ("Content-type: image/png");
$im = @imagecreate (100, 100)
or die ("Cannot initialize new GD image stream");
$background_color = imagecolorallocate ($im, 255, 255, 255);
$text_color = imagecolorallocate ($im, 0,0,0);
imagestring ($im, 2, 5, 5, "IMAGE ERROR", $text_color);
imagepng ($im);
imagedestroy($im);
}
}

?>


Save it with whatever name you like with the extension of .php

Step 4)

Point your signature to http://www.yourwebserver.com/rotate.php
 

Vortex

Slightly Crazed
Stratics Veteran
Stratics Legend
Currently you can't, which is why I'm using my 'Petra Fyde' sig everywhere instead of my 'Molly Fyde' sig here :(.

It's on the list of things to ask for when the craziness of getting everything actually working again is over.
Actually, thats not true. I have rotating sigs, you just have to use php code.

*edit* Oops, Spree beat me to it.
 

Petra Fyde

Peerless Chatterbox
Alumni
Stratics Veteran
Stratics Legend
oki, I know nothing whatsoever about php code. Before I could set which sig I used when I made a post. Molly for here, Petra for Europa etc. I guess that's not possible?
 
Top