Hello Guest, please login or register.
Did you miss your activation email?
Login with username, password and session length.

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 - Xiphirx

Pages: 1 ... 3 4 [5] 6 7
81
Feedback / Spamz
« on: September 29, 2008, 02:26:46 am »
Well, you guys might as well delete the board. It has barely any activity.

and probably has about 10 people that can access it anyway.

82
Coding / A little Bmax help
« on: September 28, 2008, 09:27:21 pm »
How would I make a window transparent?

As in, making abstract shaped windows (a blob for example). or making Black a transparent color.

Tell me if I am confusing.


83
Other Discussion / Wow, Ban Combo
« on: September 25, 2008, 11:44:16 pm »
I was surfing the net when a friend IM'd me with this site
http://forums.facepunchstudios.com/showthread.php?t=519104

Saying that he is laughing so hard because everyone got banned.


-_-. Stupid immature friends...

I later looked at it. Wow, that forum has real uptight security.

I'm so bored.

85
Graphics / My first Pixel
« on: September 24, 2008, 02:42:55 am »
< - Avatar.

C+C


I'm surprised, it actually looks like me. D :

86
Discussion / ZeDock
« on: September 23, 2008, 12:55:14 am »


ZeDock


What is it?

A new approach to a task bar for Windows. /Mac Dock ripoff


Yes, that IS a mockup. That is what I am aiming for in the final product. But first I need suggestions on the look and features.

Features
-Customizable GUI
-Add any program
-Run at startup
-Stay on top of all windows
-Ability to compact itself to save space
-Customize the scale options and number of icons allowed
-Detect Installation CD's/DVD's and display an Icon to Install
-Ability to monitor CPU
-Organize Photos and Movies, display them in a sub menu
-RSS Feed built in


Thoughts? Suggestions?

88
Other Discussion / My 8th grade terrorizing fun...
« on: August 25, 2008, 12:58:10 am »
Well, to start out, my little sister had this doll. She didn't like it so I decapitated it (don't ask) I colored its face, poke holes all around it. basically made it look like a chucky doll.

anyway, I was in eigth grade (immature) and bored so I thought that I would bring it to school.
I took a bus to my middle school so when I go on the bus I sat in the back. Everyone was dead quiet because they are all usually sleepy.
I took the doll head and threw it pretty far to the front of the bus. I sat there. All of a sudden I hear a girl scream and she throws it at a guys head.

He gets mad and throws it. (mind you that this is during winter and there is snow slush all over the floor)
all the time it hits the floor and gets dirtier. anyway it was like that till we got to school. People were like "who the hell threw that head O_o"

I was sitting there the whole time watching my bus getting terrorized. The girls screams were so funny.

That isn't it though

I repeated for 3 times before some kid took it and threw it at the bus driver. He got really mad and shoved it in the trash.
When I walked off I looked at it. it had candy and stuff all over it....















That is not all





Due to the fact that it was so amusing I got yet another doll to mess up. this time I didnt decapitate it.

I got this doll took out all of the filling except for the head. drew (god knows what) on it
put lipstick and crap all over it and took it to school with me.


this time it was the best. people screamed like hell!.

I also would throw it in the halls in between classes. a whole riot would start and I would smile.


that is probably why they installed security cameras shortly after > .>


Anyway after weeks and weeks of terrorizing I finally lost that doll.... ; o ;

So, that was a long fun ungramatical post. Do you have any type of these stories?

89
Coding / URGENT: Javascript / DICKBUTT Woes....
« on: August 23, 2008, 11:38:00 pm »

Code: [Select]
var lastpage = "notset";

function DICKBUTT()
{
var request;
try {
request = new XMLHttpRequest();
}
catch (n)
{
try
{
request = new ActiveXObject("Msxml2.XMLHTTP");
}
catch (n2)
{
try
{
request = new ActiveXObject("Microsoft.XMLHTTP");
}
catch (n3)
{
alert("Your Browser does not support DICKBUTT, which is needed to view this website. Please upgrade to the latest version of your favorite browser.");
window.location = "../Index.php";
return false;
}
}
}
return request;
}

function updatePage(location)
{
if (thing.readyState == 4)
{
if (thing.status !== 200)
{
document.getElementById(location).innerHTML = "Error, "+thing.status+"";
}
else
{
document.getElementById(location).innerHTML = thing.responseText;
}
}
}

function GetContent(url, method, place)
{
switch (method){
case "GET":
var kl = window.location.href.indexOf("?",0);
lastpage = window.location.href.substr(kl);
document.getElementById(place).innerHTML = "<center>Loading, please wait...<br /><img src='../gif/load.gif' /></center>";
thing = new DICKBUTT();
thing.open("GET", url, true);
thing.onreadystatechange = updatePage(place);
thing.send(null);
lastpage = GetDo();
break;
case "POST":
document.getElementById(place).innerHTML = "<center>Your request is being processed, please wait...<br /><img src='../gif/load.gif' /></center>";
thing = new DICKBUTT();
thing.open("POST", to, true);
thing.setRequestHeader("Content-type", "applicationx-www-form-urlencoded");
thing.setRequestHeader("Content-length", params.length);
thing.setRequestHeader("Connection", "close");
thing.onreadystatechange = updatePage(place);
thing.send(params);
break;
}
}

function GetDo()
{
var loc = window.location.href;
var idx = loc.indexOf("?", 0);
var stn = loc.substr(idx);
return stn;
}

function CheckDo()
{
if (GetDo().length > 1 && GetDo() != lastpage)
{
lastpage = GetDo();
GetContent("maincontent.php"+GetDo(), "GET", "here");
return true;
}
return false;
}

function INI()
{
if (CheckDo() == false)
{
GetContent("maincontent.php?do=home", "GET", "here");
}
}

The Problem?

Suddenly, my DICKBUTT is not working at all!. I am SURE something is wrong with updatePage(); because it stops execution when it is called...

EDIT: Updated : (

Here is what JSlint.com says

Error:

Implied global: ActiveXObject 13, XMLHttpRequest 7, alert 23, document 38 53, params 65, thing 34 54, to 63, window 24 51 75

EDIT: updated..

Please help, I need to finish this website in under a week!

90
Feedback / Rep
« on: August 19, 2008, 09:48:00 pm »
I don't really know if people would like the idea, but I saw it on other forums as a way to point the good from bad.

Sorta like Karma.

Can we add it?

92
Feedback / Download Icon
« on: August 11, 2008, 12:18:13 am »
In the completed games section looks ugly.

(attachment)? :D

95
Audio / [Request] CSS Gun sounds ...
« on: July 28, 2008, 01:02:43 am »
Counter Strike Source Original Gun shots and reloads.

I really need the reloads

Thanks


Btw (I do not own css so i can't get them)

96
Entertainment / WiiSpeak
« on: July 22, 2008, 08:42:47 pm »

97
Feedback / "Nothing, or Nothing you can see"
« on: July 16, 2008, 08:26:23 pm »
Should be changed to "Nothing you can see"

Since you really cant be doing "nothing".

98
Entertainment / All you CFW PSP owners...
« on: July 16, 2008, 08:16:32 pm »
Get CSPSP 1.55

Play it

Like it


and go here


http://z4.invisionfree.com/CSPSP/index.php?act=idx


Questions?


No but seriously, it is a very good game.

anyway I have been developing for it.

I made 2 maps so far:

fy_nade:
http://z4.invisionfree.com/CSPSP/index.php?showtopic=128

de_dust2:
http://z4.invisionfree.com/CSPSP/index.php?showtopic=130

Tell me what you think

: D

99
Feedback / Custom Title Bug
« on: July 14, 2008, 07:36:52 pm »
Shouldn't there be a limit?

also I only changed mine to show the bug....

100
Feedback / Can you guys restock?
« on: June 30, 2008, 02:56:58 am »
The items need restocking.

Please?

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

Contact Us | Legal | Advertise Here
2013 © ZFGC, All Rights Reserved



Page created in 0.014 seconds with 28 queries.

anything