Riddick
Member
+0|6678

maton wrote:

what up riddick!
heh hey Maton, hows it going...nice sig btw
Riddick
Member
+0|6678
i need anyone and everyones help with my sig.....the problem is my rank, my sig has stopped working because my rank changed from sergeant major to captain...well tehsig.com has not added that rank into there system so while EA is telling them im a captain there system doesn't recognize anything above sergeant major so here is the error im getting.


imagecreatefrompng(feed_data/bf2/ranks/14L.png)
[function.imagecreate.png]: failed to open stream:no such file or directory

Source File: "class_battlefield 2.php" at line: 373



anyone got any ideas how to fix this on my end, or do i have to wait for tehsig to fix it. i narrowed it down to this line of code that is causing the problem.

<image render="bf2:rank" x="[?{sig:rank_box:x}+1?]" y="[?{sig:rank_box:y}+1?]" width="{sig:this:height}" height="55" />
Sahasrahla
Code poet
+1|6741|Branson, MO, USA

Riddick wrote:

i need anyone and everyones help with my sig.....the problem is my rank, my sig has stopped working because my rank changed from sergeant major to captain...well tehsig.com has not added that rank into there system so while EA is telling them im a captain there system doesn't recognize anything above sergeant major so here is the error im getting.


imagecreatefrompng(feed_data/bf2/ranks/14L.png)
[function.imagecreate.png]: failed to open stream:no such file or directory

Source File: "class_battlefield 2.php" at line: 373



anyone got any ideas how to fix this on my end, or do i have to wait for tehsig to fix it. i narrowed it down to this line of code that is causing the problem.

<image render="bf2:rank" x="[?{sig:rank_box:x}+1?]" y="[?{sig:rank_box:y}+1?]" width="{sig:this:height}" height="55" />
You just have to wait, but it looks like they fixed it now... Only other advice I *could* have given you would be to manually put your new rank insignia in there and replace it with the coded version later, but like I said, it looks fine to me.
Riddick
Member
+0|6678
the only reason its working now is i nserted my own pic of the Captain isignia rank into my sig.....my progress bar is still not working right and it doesn't say Captain up there like it does for your rank but it will have to do till Nemon fixes it.
[CC]Midget
Member
+0|6667|England
i made a basic one as my clan forums have a limit on sig heights:

Code:

<?sigml version='1.0'?>
<canvas width="360" height="53" fill="00000000">
    <!-- Rank -->
    <image render="bf2:rank" x="0" y="0" width="{sig:this:height}" height="50"/>
    <image render="bf2:rank" x="0" y="0" width="{sig:this:height}" height="50"/>
    <text string="{feed:bf2:nick}" x="50" y="17" font="arial.ttf" size="9" color="4a4533" angle="0" id="dropshadow" />
    <text string="{feed:bf2:nick}" x="50" y="17" font="arial.ttf" size="9" color="4a4533" angle="0" id="dropshadow" />
    <text id="username" string="{feed:bf2:nick}" x="[?{sig:dropshadow:x}-2?]" y="[?{sig:dropshadow:y}-2?]" font="arial.ttf" size="{sig:dropshadow:size}" color="d5ad1a" angle="{sig:dropshadow:angle}" />
    <text id="username" string="{feed:bf2:nick}" x="[?{sig:dropshadow:x}-2?]" y="[?{sig:dropshadow:y}-2?]" font="arial.ttf" size="{sig:dropshadow:size}" color="d5ad1a" angle="{sig:dropshadow:angle}" />

    <!-- Score line -->
    <text id="score" string="Score: " x="{sig:username:x}" y="[?{sig:username:y}+18?]" font="arial.ttf" size="{sig:username:size}" color="c8c8c8" angle="0" />
    <text id="score" string="Score: " x="{sig:username:x}" y="[?{sig:username:y}+18?]" font="arial.ttf" size="{sig:username:size}" color="c8c8c8" angle="0" />
    <text id="score_n" string="{feed:bf2:scor:to_number}" x="[?{sig:score:x}+{sig:score:width}?]" y="[?{sig:username:y}+18?]" font="arial.ttf" size="{sig:score:size}" color="2ec824" angle="0" />
    <text id="score_n" string="{feed:bf2:scor:to_number}" x="[?{sig:score:x}+{sig:score:width}?]" y="[?{sig:username:y}+18?]" font="arial.ttf" size="{sig:score:size}" color="2ec824" angle="0" />

    <text id="kills" string="Kills: " x="120" y="[?{sig:username:y}+18?]" font="arial.ttf" size="{sig:username:size}" color="c8c8c8" angle="0" />
    <text id="kills_n" string="{feed:bf2:kill:to_number}" x="[?{sig:kills:x}+{sig:kills:width}?]" y="[?{sig:username:y}+18?]" font="arial.ttf" size="{sig:kills:size}" color="2ec824" angle="0" />
    <text id="kills" string="Kills: " x="120" y="[?{sig:username:y}+18?]" font="arial.ttf" size="{sig:username:size}" color="c8c8c8" angle="0" />
    <text id="kills_n" string="{feed:bf2:kill:to_number}" x="[?{sig:kills:x}+{sig:kills:width}?]" y="[?{sig:username:y}+18?]" font="arial.ttf" size="{sig:kills:size}" color="2ec824" angle="0" />

    <text id="deaths" string="Deaths: " x="185" y="[?{sig:username:y}+18?]" font="arial.ttf" size="{sig:username:size}" color="c8c8c8" angle="0" />
    <text id="deaths_n" string="{feed:bf2:deth:to_number}" x="[?{sig:deaths:x}+{sig:deaths:width}?]" y="[?{sig:username:y}+18?]" font="arial.ttf" size="{sig:deaths:size}" color="2ec824" angle="0" />
    <text id="deaths" string="Deaths: " x="185" y="[?{sig:username:y}+18?]" font="arial.ttf" size="{sig:username:size}" color="c8c8c8" angle="0" />
    <text id="deaths_n" string="{feed:bf2:deth:to_number}" x="[?{sig:deaths:x}+{sig:deaths:width}?]" y="[?{sig:username:y}+18?]" font="arial.ttf" size="{sig:deaths:size}" color="2ec824" angle="0" />

    <text id="time" string="Time: " x="265" y="[?{sig:username:y}+18?]" font="arial.ttf" size="{sig:username:size}" color="c8c8c8" angle="0" />
    <text id="time_h" string="{feed:bf2:time:to_elapsed:%h}:[?{feed:bf2:time:to_elapsed:%m}-({feed:bf2:time:to_elapsed:%h}*60)?]:[?{feed:bf2:time:to_elapsed:%s}-({feed:bf2:time:to_elapsed:%m}*60)?]" x="[?{sig:time:x}+{sig:time:width}?]" y="[?{sig:username:y}+18?]" font="arial.ttf" size="{sig:time:size}" color="2ec824" angle="0" />
    <text id="time" string="Time: " x="265" y="[?{sig:username:y}+18?]" font="arial.ttf" size="{sig:username:size}" color="c8c8c8" angle="0" />
    <text id="time_h" string="{feed:bf2:time:to_elapsed:%h}:[?{feed:bf2:time:to_elapsed:%m}-({feed:bf2:time:to_elapsed:%h}*60)?]:[?{feed:bf2:time:to_elapsed:%s}-({feed:bf2:time:to_elapsed:%m}*60)?]" x="[?{sig:time:x}+{sig:time:width}?]" y="[?{sig:username:y}+18?]" font="arial.ttf" size="{sig:time:size}" color="2ec824" angle="0" />

    <!-- SPM line -->
    <text id="spm" string="SPM: " x="{sig:username:x}" y="[?{sig:username:y}+30?]" font="arial.ttf" size="{sig:username:size}" color="c8c8c8" angle="0" />
    <text id="spm_n" string="{feed:bf2:f_ospm}" x="[?{sig:spm:x}+{sig:spm:width}?]" y="[?{sig:username:y}+30?]" font="arial.ttf" size="{sig:spm:size}" color="2ec824" angle="0" />
    <text id="spm" string="SPM: " x="{sig:username:x}" y="[?{sig:username:y}+30?]" font="arial.ttf" size="{sig:username:size}" color="c8c8c8" angle="0" />
    <text id="spm_n" string="{feed:bf2:f_ospm}" x="[?{sig:spm:x}+{sig:spm:width}?]" y="[?{sig:username:y}+30?]" font="arial.ttf" size="{sig:spm:size}" color="2ec824" angle="0" />

    <text id="kpm" string="KPM: " x="{sig:kills:x}" y="[?{sig:username:y}+30?]" font="arial.ttf" size="{sig:username:size}" color="c8c8c8" angle="0" />
    <text id="kpm_n" string="[?{feed:bf2:kill}/{feed:bf2:time:to_elapsed:%m}?]" x="[?{sig:kpm:x}+{sig:kpm:width}?]" y="[?{sig:username:y}+30?]" font="arial.ttf" size="{sig:kpm:size}" color="2ec824" angle="0" />
    <text id="kpm" string="KPM: " x="{sig:kills:x}" y="[?{sig:username:y}+30?]" font="arial.ttf" size="{sig:username:size}" color="c8c8c8" angle="0" />
    <text id="kpm_n" string="[?{feed:bf2:kill}/{feed:bf2:time:to_elapsed:%m}?]" x="[?{sig:kpm:x}+{sig:kpm:width}?]" y="[?{sig:username:y}+30?]" font="arial.ttf" size="{sig:kpm:size}" color="2ec824" angle="0" />

    <text id="dpm" string="DPM: " x="{sig:deaths:x}" y="[?{sig:username:y}+30?]" font="arial.ttf" size="{sig:username:size}" color="c8c8c8" angle="0" />
    <text id="dpm_n" string="[?{feed:bf2:deth}/{feed:bf2:time:to_elapsed:%m}?]" x="[?{sig:dpm:x}+{sig:dpm:width}?]" y="[?{sig:username:y}+30?]" font="arial.ttf" size="{sig:dpm:size}" color="2ec824" angle="0" />
    <text id="dpm" string="DPM: " x="{sig:deaths:x}" y="[?{sig:username:y}+30?]" font="arial.ttf" size="{sig:username:size}" color="c8c8c8" angle="0" />
    <text id="dpm_n" string="[?{feed:bf2:deth}/{feed:bf2:time:to_elapsed:%m}?]" x="[?{sig:dpm:x}+{sig:dpm:width}?]" y="[?{sig:username:y}+30?]" font="arial.ttf" size="{sig:dpm:size}" color="2ec824" angle="0" />

    <text id="k_d_ratio" string="K/D: " x="{sig:time:x}" y="[?{sig:username:y}+30?]" font="arial.ttf" size="{sig:username:size}" color="c8c8c8" angle="0" />
    <text id="k_d_ratio_n" string="{feed:bf2:f_kdrf}" x="[?{sig:k_d_ratio:x}+{sig:k_d_ratio:width}?]" y="[?{sig:username:y}+30?]" font="arial.ttf" size="{sig:k_d_ratio:size}" color="2ec824" angle="0" />
    <text id="k_d_ratio" string="K/D: " x="{sig:time:x}" y="[?{sig:username:y}+30?]" font="arial.ttf" size="{sig:username:size}" color="c8c8c8" angle="0" />
    <text id="k_d_ratio_n" string="{feed:bf2:f_kdrf}" x="[?{sig:k_d_ratio:x}+{sig:k_d_ratio:width}?]" y="[?{sig:username:y}+30?]" font="arial.ttf" size="{sig:k_d_ratio:size}" color="2ec824" angle="0" />

<copyright x="[?{sig:canvas:width}-{sig:this:width}?]" y="3" size="12" font="arial.ttf" color="FFFFFF00"/>    
</canvas>
Should look like [url=http://bf2s.com/player/43062809/][img]http://img.tehsig.com/usr_21389/tpl_1/image.jpg[/img][/url]

and this one with the flag:

Code:

<?sigml version='1.0'?>
<canvas width="360" height="53" fill="00000000">

    <!-- Flag -->
    <image render="bf2:flag" x="[?{sig:rank:x}+5?]" y="15" width="40" height="[?{sig:this:width}*0.625?]" id="user_flag" />

    <!-- Rank -->
    <image render="bf2:rank" x="0" y="0" width="{sig:this:height}" height="50"/>
    <image render="bf2:rank" x="0" y="0" width="{sig:this:height}" height="50"/>
    <text string="{feed:bf2:nick}" x="50" y="17" font="arial.ttf" size="9" color="4a4533" angle="0" id="dropshadow" />
    <text string="{feed:bf2:nick}" x="50" y="17" font="arial.ttf" size="9" color="4a4533" angle="0" id="dropshadow" />
    <text id="username" string="{feed:bf2:nick}" x="[?{sig:dropshadow:x}-2?]" y="[?{sig:dropshadow:y}-2?]" font="arial.ttf" size="{sig:dropshadow:size}" color="d5ad1a" angle="{sig:dropshadow:angle}" />
    <text id="username" string="{feed:bf2:nick}" x="[?{sig:dropshadow:x}-2?]" y="[?{sig:dropshadow:y}-2?]" font="arial.ttf" size="{sig:dropshadow:size}" color="d5ad1a" angle="{sig:dropshadow:angle}" />

    <!-- Score line -->
    <text id="score" string="Score: " x="{sig:username:x}" y="[?{sig:username:y}+18?]" font="arial.ttf" size="{sig:username:size}" color="c8c8c8" angle="0" />
    <text id="score" string="Score: " x="{sig:username:x}" y="[?{sig:username:y}+18?]" font="arial.ttf" size="{sig:username:size}" color="c8c8c8" angle="0" />
    <text id="score_n" string="{feed:bf2:scor:to_number}" x="[?{sig:score:x}+{sig:score:width}?]" y="[?{sig:username:y}+18?]" font="arial.ttf" size="{sig:score:size}" color="2ec824" angle="0" />
    <text id="score_n" string="{feed:bf2:scor:to_number}" x="[?{sig:score:x}+{sig:score:width}?]" y="[?{sig:username:y}+18?]" font="arial.ttf" size="{sig:score:size}" color="2ec824" angle="0" />

    <text id="kills" string="Kills: " x="120" y="[?{sig:username:y}+18?]" font="arial.ttf" size="{sig:username:size}" color="c8c8c8" angle="0" />
    <text id="kills_n" string="{feed:bf2:kill:to_number}" x="[?{sig:kills:x}+{sig:kills:width}?]" y="[?{sig:username:y}+18?]" font="arial.ttf" size="{sig:kills:size}" color="2ec824" angle="0" />
    <text id="kills" string="Kills: " x="120" y="[?{sig:username:y}+18?]" font="arial.ttf" size="{sig:username:size}" color="c8c8c8" angle="0" />
    <text id="kills_n" string="{feed:bf2:kill:to_number}" x="[?{sig:kills:x}+{sig:kills:width}?]" y="[?{sig:username:y}+18?]" font="arial.ttf" size="{sig:kills:size}" color="2ec824" angle="0" />

    <text id="deaths" string="Deaths: " x="185" y="[?{sig:username:y}+18?]" font="arial.ttf" size="{sig:username:size}" color="c8c8c8" angle="0" />
    <text id="deaths_n" string="{feed:bf2:deth:to_number}" x="[?{sig:deaths:x}+{sig:deaths:width}?]" y="[?{sig:username:y}+18?]" font="arial.ttf" size="{sig:deaths:size}" color="2ec824" angle="0" />
    <text id="deaths" string="Deaths: " x="185" y="[?{sig:username:y}+18?]" font="arial.ttf" size="{sig:username:size}" color="c8c8c8" angle="0" />
    <text id="deaths_n" string="{feed:bf2:deth:to_number}" x="[?{sig:deaths:x}+{sig:deaths:width}?]" y="[?{sig:username:y}+18?]" font="arial.ttf" size="{sig:deaths:size}" color="2ec824" angle="0" />

    <text id="time" string="Time: " x="265" y="[?{sig:username:y}+18?]" font="arial.ttf" size="{sig:username:size}" color="c8c8c8" angle="0" />
    <text id="time_h" string="{feed:bf2:time:to_elapsed:%h}:[?{feed:bf2:time:to_elapsed:%m}-({feed:bf2:time:to_elapsed:%h}*60)?]:[?{feed:bf2:time:to_elapsed:%s}-({feed:bf2:time:to_elapsed:%m}*60)?]" x="[?{sig:time:x}+{sig:time:width}?]" y="[?{sig:username:y}+18?]" font="arial.ttf" size="{sig:time:size}" color="2ec824" angle="0" />
    <text id="time" string="Time: " x="265" y="[?{sig:username:y}+18?]" font="arial.ttf" size="{sig:username:size}" color="c8c8c8" angle="0" />
    <text id="time_h" string="{feed:bf2:time:to_elapsed:%h}:[?{feed:bf2:time:to_elapsed:%m}-({feed:bf2:time:to_elapsed:%h}*60)?]:[?{feed:bf2:time:to_elapsed:%s}-({feed:bf2:time:to_elapsed:%m}*60)?]" x="[?{sig:time:x}+{sig:time:width}?]" y="[?{sig:username:y}+18?]" font="arial.ttf" size="{sig:time:size}" color="2ec824" angle="0" />

    <!-- SPM line -->
    <text id="spm" string="SPM: " x="{sig:username:x}" y="[?{sig:username:y}+30?]" font="arial.ttf" size="{sig:username:size}" color="c8c8c8" angle="0" />
    <text id="spm_n" string="{feed:bf2:f_ospm}" x="[?{sig:spm:x}+{sig:spm:width}?]" y="[?{sig:username:y}+30?]" font="arial.ttf" size="{sig:spm:size}" color="2ec824" angle="0" />
    <text id="spm" string="SPM: " x="{sig:username:x}" y="[?{sig:username:y}+30?]" font="arial.ttf" size="{sig:username:size}" color="c8c8c8" angle="0" />
    <text id="spm_n" string="{feed:bf2:f_ospm}" x="[?{sig:spm:x}+{sig:spm:width}?]" y="[?{sig:username:y}+30?]" font="arial.ttf" size="{sig:spm:size}" color="2ec824" angle="0" />

    <text id="kpm" string="KPM: " x="{sig:kills:x}" y="[?{sig:username:y}+30?]" font="arial.ttf" size="{sig:username:size}" color="c8c8c8" angle="0" />
    <text id="kpm_n" string="[?{feed:bf2:kill}/{feed:bf2:time:to_elapsed:%m}?]" x="[?{sig:kpm:x}+{sig:kpm:width}?]" y="[?{sig:username:y}+30?]" font="arial.ttf" size="{sig:kpm:size}" color="2ec824" angle="0" />
    <text id="kpm" string="KPM: " x="{sig:kills:x}" y="[?{sig:username:y}+30?]" font="arial.ttf" size="{sig:username:size}" color="c8c8c8" angle="0" />
    <text id="kpm_n" string="[?{feed:bf2:kill}/{feed:bf2:time:to_elapsed:%m}?]" x="[?{sig:kpm:x}+{sig:kpm:width}?]" y="[?{sig:username:y}+30?]" font="arial.ttf" size="{sig:kpm:size}" color="2ec824" angle="0" />

    <text id="dpm" string="DPM: " x="{sig:deaths:x}" y="[?{sig:username:y}+30?]" font="arial.ttf" size="{sig:username:size}" color="c8c8c8" angle="0" />
    <text id="dpm_n" string="[?{feed:bf2:deth}/{feed:bf2:time:to_elapsed:%m}?]" x="[?{sig:dpm:x}+{sig:dpm:width}?]" y="[?{sig:username:y}+30?]" font="arial.ttf" size="{sig:dpm:size}" color="2ec824" angle="0" />
    <text id="dpm" string="DPM: " x="{sig:deaths:x}" y="[?{sig:username:y}+30?]" font="arial.ttf" size="{sig:username:size}" color="c8c8c8" angle="0" />
    <text id="dpm_n" string="[?{feed:bf2:deth}/{feed:bf2:time:to_elapsed:%m}?]" x="[?{sig:dpm:x}+{sig:dpm:width}?]" y="[?{sig:username:y}+30?]" font="arial.ttf" size="{sig:dpm:size}" color="2ec824" angle="0" />

    <text id="k_d_ratio" string="K/D: " x="{sig:time:x}" y="[?{sig:username:y}+30?]" font="arial.ttf" size="{sig:username:size}" color="c8c8c8" angle="0" />
    <text id="k_d_ratio_n" string="{feed:bf2:f_kdrf}" x="[?{sig:k_d_ratio:x}+{sig:k_d_ratio:width}?]" y="[?{sig:username:y}+30?]" font="arial.ttf" size="{sig:k_d_ratio:size}" color="2ec824" angle="0" />
    <text id="k_d_ratio" string="K/D: " x="{sig:time:x}" y="[?{sig:username:y}+30?]" font="arial.ttf" size="{sig:username:size}" color="c8c8c8" angle="0" />
    <text id="k_d_ratio_n" string="{feed:bf2:f_kdrf}" x="[?{sig:k_d_ratio:x}+{sig:k_d_ratio:width}?]" y="[?{sig:username:y}+30?]" font="arial.ttf" size="{sig:k_d_ratio:size}" color="2ec824" angle="0" />

<copyright x="[?{sig:canvas:width}-{sig:this:width}?]" y="3" size="12" font="arial.ttf" color="FFFFFF00"/>    
</canvas>
looks like this: [url=http://bf2s.com/player/43062809/][img]http://img.tehsig.com/usr_21389/tpl_0/image.jpg[/img][/url]

Last edited by [CC]Midget (2006-02-17 03:41:58)

j4mi3-k1ll3r
Member
+19|6643|Behind that RPK-74
TEST

https://img.tehsig.com/usr_29594/tpl_0/image.jpg

Cool thanks ... how do i add a union jack to my sig ????? , would like it behind my rank pic !!!

Last edited by j4mi3-k1ll3r (2006-02-16 19:43:53)

Riddick
Member
+0|6678
i do have a question for anyone who can tell me, how would i take the flag from the sig Sahasrahla redid and put it into the sig ']['onio made, such as the sig i am using now is ']['onio's and here is the line of code in Sahasrahla's with the flag, but i cant seem to get it in the right place when i put it in my sig, it places the flag way out of position, and i cant get it moved to the right place.

<image render="bf2:flag" x="[?{sig:rank_box:x}+3?]" y="[?{sig:rank_box:y}+(({sig:rank_box:height}-({sig:this:width}*0.625))/2)?]" width="48" height="[?{sig:this:width}*0.625?]" id="user_flag" />
bowdenball
Member
+11|6642|Greenville, SC
i must be retarded ... i tried all the instructions and instead of giving you my stats it gives the original instructors stats... i tried following his instructions and changed what i thought i was supposed to... oh well.... any other ideas?
evil_Swede
Member
+0|6653
spacebandit72
Dead Meat
+121|6726|Michigan
I wonder if Chuy will bring back his sigs now that he has the sweet puter.
Ryan
Member
+1,230|6839|Alberta, Canada

i miss those sigs....
JaM3z
Banned
+311|6706
thanks for all that after going through it all i decided to make one change to the original can  you spot it???
flyingtoretilas
Member
+4|6637
Azygos666 WTF? How do you have that good of a win ratio, do you switch over when the rounds gonna end? THATS CRAZY!!!
Azygos666
Member
+0|6704

flyingtoretilas wrote:

Azygos666 WTF? How do you have that good of a win ratio, do you switch over when the rounds gonna end? THATS CRAZY!!!
??? Nope dont switch.  Run on 16 player maps with 3 of my clan buddies... Aaron141 and wingnutwizard-jp.  When you have 3 guys that constantly finish in top 5 on the same side it makes it easy as hell to win.  That and Ive been working my ass off for the last month and a half going for the WCR, need 17 more wins and Im at 3:1

Its not that crazy when you are actually good...

ofcourse now that I have discovered suicide bomb runs and have been all out going after that damn explosive ordanance badge...my k:d sucks

-Wolf

Last edited by Azygos666 (2006-02-23 04:51:10)

Ion
Member
+0|6636
Great sigs man and great walkthru!
death_reaper
Member
+0|6651
FreekBoy
Member
+1|6837|Michigan

death_reaper wrote:

http://www.pepper-mill.co.uk/bf2sig/index.php great site
Tried it, I get something about my pid not being authorized.

Last edited by FreekBoy (2006-03-01 16:28:21)

K1OVERDOSE
Member
+2|6649
Nice work Guys!!!!  See you on the Battlefield!!!
InviSniper
The first true Sniper.
+95|6639|Cumberland, MD, USA
Does any one person know of one of these sigs that will show both your vanilla BF medals and the SF ribbons on it?
Aruba-Prime
[Expert Smoke Grenade]
+44|6770|Hamburg, Germany
like this one? quote me to see the url
or go to www.bf2player.com

Last edited by Aruba-Prime (2006-03-21 05:27:30)

Azygos666
Member
+0|6704

InviSniper wrote:

Does any one person know of one of these sigs that will show both your vanilla BF medals and the SF ribbons on it?
Mine does, you just need to type it into the sig code

...
and apparently it is getting an error at the moment... weird
-Wolf

Last edited by Azygos666 (2006-03-23 04:09:23)

YoBabysDaddy
Member
+31|6819|St. Louis, MO

Aruba-Prime wrote:

like this one? quote me to see the url
or go to www.bf2player.com
Thank you for the link.Using the search feature does pay off.
RicardoBlanco
The English
+177|6564|Oxford
BF2Player works for me...
_j5689_
Dreads & Bergers
+364|6712|Riva, MD
Are they going to be updated to the Euro Force awards soon?  Or does it automatically add them if you've played EF before?
k9transfer
Member
+22|6653
what is up all?

Board footer

Privacy Policy - © 2024 Jeff Minard