Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Tidus

Pages: 1 ... 3 4 [5] 6
61
Off Topic / Unable to access topic.
« on: July 10, 2008, 11:19:37 AM »
I am unable to access this topic.  "All my computers running at the moment." under hardware design. i get an error pop-up every time.

62
Scripting Languages / Great PHP Script - Random File Puller.
« on: July 08, 2008, 01:43:00 PM »
So you want people to be able to randomly pull up a file or picture anything?  Say a random script?  All you need to change are the endings of the files.  Say you want a .JPG file to pull up.  or a .GIF file.

Code: [Select]
<?php
$files 
glob('{*.PNG,*.png,*.JPG,*.jpg,*.GIF,*.gif}'GLOB_BRACE);
readfile($files[array_rand($files)]);
?>


Say it is a random assortment of .php files.  add that to the list.

Whatever you do all you do is put this little snippet as it's own .php file and place it is a directory you want to use it in.  So say you want your file of My Pictures to randomly show up.   You put your .php file in there and direct yourself to it.  My Pictures/random.php    Works wonders and i'm sure you'll love it.

ruaduck/Tidus

63
Television/Movies / Futurama
« on: July 08, 2008, 12:57:04 PM »
This show is just great!!!  I miss this show so much. I wish they kept making it.  There is nothing like shoving a slob 1000 years into the future and watch him still be himself and adjust.  I think this show beats the Simpsons, even though it is made by the same creators.

64
Beverages / Long Island Ice Tea.
« on: July 08, 2008, 12:39:39 PM »
I just happen to love this drink.  A great mix of usually 4 different types of alcohol.  A couple of these and you will be sitting with a great buzz that leaves you feeling quite happy.

Favorite bottle brand:  TGI Friday's

Otherwise i will buy it at any bar.

65
Beverages / Screw Driver
« on: July 08, 2008, 12:38:00 PM »
I love a good ole screw driver.  Vodka and Orange Juice mixed.

There is nothing like having the taste of orange juice but the kick of alcohol.  Great taste that leaves the room spinning after a few glasses! :)

66
Movie Review / The Love Guru
« on: July 08, 2008, 12:27:42 PM »
Calling all Mike Meyers fans!!!  If you are a fan of his you will definately enjoy this movie.  Though it is querky it is still worth the watch.  In placement of all his movies this one is better than Austin Powers and a just a little below So I Married and Axe Murderer.  It has great humor and it is just a movie to go out to see to have fun.  The plot is solid.

In placement of other movies i rate it just below The 40 Year Old Virgin, but something i would still buy when out on DVD.

The story is pretty simple. A #2 Rate Love Guru is wanting to be the #1. He gets an assignment who could make this possible.  A Canadian Hockey Player at a lost for game because of a broken heart. They need him for the Stanley Cup.  So they hire this Guru to bring back the player they need.  From there the comedic lines never end and watch the trial and tribulation he goes through as a love guru who wants to be loved himself.

67
Movie Review / Wanted (R)
« on: July 08, 2008, 12:11:32 PM »
This movie as far as plot and story are great.  If you want action suspense and a great scenes this is the movie to watch! 

The story is about someone who thinks he is the average joe.  Horrible job, girlfriend, and life.  Then a hot shot assassin fraternity seeks him out and makes him the next member of their fraternity.  From there he begins his journy as a nobody to a rich assassin!

If you are not into a bit of realistic fantasy you will probably not enjoy this movie.  All you need is an open mind and want for action and it is right for you.

68
Off Topic / gaining, gaining, gaining.
« on: June 25, 2008, 05:14:46 PM »
Wow, TM you now have 55 members.  You are gaining quick!  Great JOB!

69
Scripting Chat / TM, do you have a script that...
« on: June 20, 2008, 11:53:11 AM »
can train fishing or a full on fishing script?  I want to try to do fishing.  i have never done it before.


70
Off Topic / TM, This is for if you want to add a link to your SMF.
« on: June 19, 2008, 01:10:31 PM »
I am going to show you how you can manually put a link into your bar up top.  If you ever choose to go with a different look.. all you need is a style.css file in a new Theme spot and it will automatically pull from the default.  But that is besides the point.

Okay say you want to put in a new link that brings you back to your main ScriptUO site.

You would add this code into your index.template.php file in front of/behind: // Show the [home] Button.  Each designated spot in the list has a [] around it and it will then allow you to place where you want.  So for example your profile link would begin like // Show the [profile] button, the links might looks like //Show the [links] Button. and so forth. So you want this code before your home button, just copy and past this code right in front of it. If you want it in front of Links... just find the spot for links and put it right in front of it.

Code: [Select]
// Show the [Scriptuo] button.
echo ($current_action == '' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '' , '
<td valign="top" class="maintab_' , $current_action == '' ? 'active_back' : 'back' , '">
<a href="http://scriptuo.com">' , $txt['scriptuo'] , '</a>
</td>' , $current_action == '' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';

The Key is:
Code: [Select]
<a href="http://scriptuo.com">' , $txt['scriptuo'] , '</a>


Now you have that in your index.template.php    now you need to add one little thing to a language file.  I'm not sure if you run index.english-utf8.php or index.english.php   so i will have you add this code to both files at the bottom right before    ?>

Code: [Select]
$txt['scriptuo'] = 'Script UO';

you can change 'Script UO'  to whatever you would like it to say.  If you want it to say main it would be:

Code: [Select]
$txt['scriptuo'] = 'Main';
   

Also if you wanted your Home to be changed to forum you would do this in your language file also.

Find:
Code: [Select]
$txt[103] = 'Home';
and all you have to do is replace 'Home' with 'Forum'

So if you chose to do that you could actually change
Code: [Select]
$txt['scriptuo'] = 'Main';
   

to say

Code: [Select]
$txt['scriptuo'] = 'Home';
   


If you have any troubles let me know.  or you could always attach the files here and i would fix them.

ruaduck/Tidus





71
Off Topic / anyone else getting a connection refused from winuo?
« on: June 16, 2008, 11:23:29 AM »
I keep getting my connection refused from winuo.  I was just wondering if anyone was having the same problems.

:)

72
Off Topic / I hate databases! :)
« on: June 15, 2008, 06:51:08 PM »
i'm trying to get my e107 site to use the registered users off my SMF forum and it just won't work..it is so frustrating :)  gah! :)

73
Off Topic / Bored at Work so thought i would post....
« on: June 12, 2008, 11:09:56 AM »
Well i'm just sitting at work pretty much waiting for the day to be over so i can start my weekend. Yes i only work Mon-Thurs.  I'm good like that.  But i do work 1 weekend a month.  So it's all good.  So boredom is me...  I have nothing good to do. Can't do any scripts because no UO. Can't do work, because work sucks. and can't do anything more to my sites...because not enough members on any of em.. so here is sit like a fly on a toilet seat.

74
Off Topic / oh yeahhhhh
« on: June 11, 2008, 11:40:40 AM »

75
Off Topic / I don't know if i dare ask...
« on: June 10, 2008, 03:20:59 PM »
but why did J4BBER all of a sudden kill UOCoders for the second time?  Just a curiosity question.  Thanks..

Pages: 1 ... 3 4 [5] 6