UGL: Ultimate Gaming League

TFlan

I could change this in my User CP.
Reaction score
64
new look to the site.... less "professional" looking i think, but i like the width and thats its bland, with only 2 images so loading is faster, i still have a few minor color changes i have to do, but i like it so far :confused:

comments?
 

mase

____ ___ ____ __
Reaction score
154
Very nice. I like dark themes more than light themes so I love that theme xD
 

sqrage

Mega Super Ultra Cool Member
Reaction score
514
I feel the navigation should be moved down and aligned with the bottom of the banner. Not sure what would go in the space though.
 

TFlan

I could change this in my User CP.
Reaction score
64
hmmm i agree, in fact i moved it down....

but maybe recent topics? or matches?
 

sqrage

Mega Super Ultra Cool Member
Reaction score
514
in the space, maybe put recent posts
this this order
"sqrage ThreadName 5:23pm"
 

TFlan

I could change this in my User CP.
Reaction score
64
ok so i added that to the top left.

I also added signatures, avatars, and country flags to the user profile and forums.
 

mase

____ ___ ____ __
Reaction score
154
Heh, on the forums your tables expand and if they get too big they go past the ad (and under it too)
 

TFlan

I could change this in my User CP.
Reaction score
64
what browser and what page?
 

mase

____ ___ ____ __
Reaction score
154
IE and in the Nice... thread
 

TFlan

I could change this in my User CP.
Reaction score
64
Yea ever since i added the latest posts there have been some issues....

i think im gunna take it off and redo it, cause the member section isnt working :/ and te forums are messed....

once i get hom from school tho...
 

TFlan

I could change this in my User CP.
Reaction score
64
ok i dont understand why it is doing that!!

please anyone know why it goes off the side, it only does that on the view forum topic pages....


untill then i have a script telling you to user firefox for best performance.
 

TFlan

I could change this in my User CP.
Reaction score
64
another new look, i think im going to stay with this one, the only layout problem is the side navigation.

What do you think.

Also, once i get home im planning on working on the single game system.

Anyone know how i should go about doing this??
 

mase

____ ___ ____ __
Reaction score
154
The domain isnt working for me xD It goes to the Awardspace error page. :nuts:

But http://24.34.128.8:8000/ works fine.

This layout is the best so far :D
 

TFlan

I could change this in my User CP.
Reaction score
64
i switch the domain name server so i could use awardspace for hosting the main part and my personal web server for testing.

The domain name works now, or it does for me at least.

If you find ANY errors please tell me
 

TFlan

I could change this in my User CP.
Reaction score
64
does anyone know how to replace certain strings, like for an emotion?

if they have a smile face with :.) (period there so it doesnt show as image) then it shows :)

I want to put emotions in the pm and forum system.

BTW, the forum system was remade this morning... i had to scratch the whole thing and remake it, because of all the errors. Anyone want to go give it a shot with exploiting things (DDRist maybe), but this time just tell me ;) .
 

TFlan

I could change this in my User CP.
Reaction score
64
ok i found it, i think
Code:
$body = mysql_result($result, $i, 'body');
$emo1 = ":)";
$femo1 = " <img src=\"images/smile.gif\" /> ";

$body = ereg_replace ($body, $emo1, $femo1);

Would that be it, and then just repeat it for as many emos there are or can it be done with just one ereg_replace command?
 

TFlan

I could change this in my User CP.
Reaction score
64
ok so i made the script, its a bit long, but i didnt know if i could make it all into once command or not so i went the safe route....

but it wont work, it just changes the whole string into the wink image....

heres the code:

Code:
			$emo1 = ":argue:";
			$femo1 = " <img src=\"emo/argue.gif\" /> ";
			$emo2 = ":bigsmile:";
			$femo2 = " <img src=\"emo/blaugh.gif\" /> ";
			$emo3 = ":cool:";
			$femo3 = " <img src=\"emo/cool.gif\" /> ";
			$emo4 = ":cry:";
			$femo4 = " <img src=\"emo/cry.gif\" /> ";
			$emo5 = ":yell:";
			$femo5 = " <img src=\"emo/director.gif\" /> ";
			$emo6 = ":insult:";
			$femo6 = " <img src=\"emo/dis.gif\" /> ";
			$emo7 = ":eek:";
			$femo7 = " <img src=\"emo/eek.gif\" /> ";
			$emo8 = ":huh:";
			$femo8 = " <img src=\"emo/he.gif\" /> ";
			$emo9 = ":help:";
			$femo9 = " <img src=\"emo/help.gif\" /> ";
			$emo10 = ":shoot:";
			$femo10 = " <img src=\"emo/kali.gif\" /> ";
			$emo11 = ":kiss:";
			$femo11 = " <img src=\"emo/kiss.gif\" /> ";
			$emo12 = ":mad:";
			$femo12 = " <img src=\"emo/mad.gif\" /> ";
			$emo13 = ":nono:";
			$femo13 = " <img src=\"emo/nono.gif\" /> ";
			$emo14 = ":sick:";
			$femo14 = " <img src=\"emo/puke.gif\" /> ";
			$emo15 = ":rofl:";
			$femo15 = " <img src=\"emo/rotfl.gif\" /> ";
			$emo16 = ":sad:";
			$femo16 = " <img src=\"emo/sad.gif\" /> ";
			$emo17 = ":sleepy:";
			$femo17 = " <img src=\"emo/sleepy.gif\" /> ";
			$emo18 = ":smile:";
			$femo18 = " <img src=\"emo/smile.gif\" /> ";
			$emo19 = ":tongue:";
			$femo19 = " <img src=\"emo/tongue.gif\" /> ";
			$emo20 = ":wink:";
			$femo20 = " <img src=\"emo/wink.gif\" /> ";	
				$body = mysql_result($result, $j, 'body');
				$body1 = ereg_replace($body, $emo1, $femo1);
				$body2 = ereg_replace($body1, $emo2, $femo2);
				$body3 = ereg_replace($body2, $emo3, $femo3);
				$body4 = ereg_replace($body3, $emo4, $femo4);
				$body5 = ereg_replace($body4, $emo5, $femo5);
				$body6 = ereg_replace($body5, $emo6, $femo6);
				$body7 = ereg_replace($body6, $emo7, $femo7);
				$body8 = ereg_replace($body7, $emo8, $femo8);
				$body9 = ereg_replace($body8, $emo9, $femo9);
				$body10 = ereg_replace($body9, $emo10, $femo10);
				$body11 = ereg_replace($body10, $emo11, $femo11);
				$body12 = ereg_replace($body11, $emo12, $femo12);
				$body13 = ereg_replace($body12, $emo13, $femo13);
				$body14 = ereg_replace($body13, $emo14, $femo14);
				$body15 = ereg_replace($body14, $emo15, $femo15);
				$body16 = ereg_replace($body15, $emo16, $femo16);
				$body17 = ereg_replace($body16, $emo17, $femo17);
				$body18 = ereg_replace($body17, $emo18, $femo18);
				$body19 = ereg_replace($body18, $emo19, $femo19);
				$body20 = ereg_replace($body19, $emo20, $femo20);
				$body0 = nl2br($body20);


:::EDIT:::
I found the reason why,

the correct format is
$body1 = ereg_replace($emo1, $femo1, $body);
 

TFlan

I could change this in my User CP.
Reaction score
64
does anyone know how to make a new post script for my forums?
 
General chit-chat
Help Users
  • No one is chatting at the moment.

      The Helper Discord

      Staff online

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top