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 2 3 [4] 5 6 7
61
Other Projects / xShoutX
« on: November 12, 2008, 03:29:20 am »
I have been developing a website for the past month and a half, and I have been focusing on the shoutbox a little too much :S.

Anyway, I thought that if I finish coding it and making it look nice, I can share it with you guys :D.

To see it SO FAR (it is not done), the shoutbox used at www.xeclan.co.nr is using the xShoutX system :).

Features (SO FAR)

_ Ajaxified :P
_ Does not need a MySQL Database
_ Easily customizable
_ Light weight (only 3 files)
_ Implementable with ease
_ Small and not too flashy :P

Screenshots:











I won't add admin features because I can't be to certain of everyone's Login and admin system, so it would be better if you implement it yourself.

62
Feedback / Change "Games" to "Projects"
« on: November 10, 2008, 03:42:20 am »
What I am trying to say is that not everything created here is a game... So what if we created a program? (Password Jacker, RSS reader, SigmaSix) Where do we submit it?

I suggest we change it to Projects, WIP Projects, Completed Projects, Scrapped Projects, Ideas and Concepts.

That way, everything that we create isn't generalized.

63
Discussion / ATTN GM Users
« on: November 09, 2008, 11:32:25 pm »
Switch to this when it is done.

http://enigma-dev.org/

The one main BIG difference is that is actually compiles the EXE.

This greatly increases loading and gameplay speeds.

oh and GASP, it allows you to use C++ too!

It is in it's alpha stages, but it should be done soon.

65
Coding / Even though I hate IE
« on: November 01, 2008, 07:15:28 am »
I want everyone to access my site.

So, I am using DICKBUTT and it doesn't like IE apparently...

Here is my function, I added debug alerts; so you know, only "fail" appears (the first one).

Basically it cannot catch the error...

Code: [Select]
function DICKBUTT()
{
var request;
try {request = new XMLHttpRequest();
alert("fail");}
catch (e)
{
try {request = new ActiveXObject("Msxml2.XMLHTTP");
alert("Fail 1");}
catch (e)
{
try{request = new ActiveXObject("Microsoft.XMLHTTP");
alert("Fail 2");}
catch (e)
{
alert("Fail 3");
alert("Your Browser does not support DICKBUTT, which is needed to view this website. Please upgrade to the latest version of your favorite browser.");
return false;
}
}
}
return request;

}

I have thought of a simple workaround such as if (request != XMLHttpRequest) but I don't know, I checked W3C and other various sites, and my code matches theirs exactly (including ZFGC).

What is going on?

66
Other Discussion / I for one, think this is correct.
« on: November 01, 2008, 04:35:47 am »
<a href="http://www.youtube.com/watch?v=pj-jgxBmr5E" target="_blank">http://www.youtube.com/watch?v=pj-jgxBmr5E</a>

Be sure to get that white friend ;)

67
Entertainment / What 3d Sonic games should look like
« on: November 01, 2008, 04:22:06 am »
http://www.youtube.com/watch?v=Y8SuCZqu6zY&fmt=18

I mean seriously? That is a fun looking game, who's with me?

68
Coding / Damn you to hell PHP.
« on: October 30, 2008, 11:13:23 pm »

Basically, I have a form

Code: [Select]
<img src="img/contact.png" /> <br/><br />

<form action="" method="POST" onSubmit="return SubmitContact(this);" id="submitcontact">
<table width="100%">
<tr><td width="10%">Name:</td><td><input type="text" name="contactname" size="20" id="contactname"/></td></tr>
<tr><td width="10%">Subject:</td><td><input type="text" name="contactsubject" size="20" id="contactsubject"/></td></tr>
<tr><td width="10%">Email:</td><td><input type="text" name="contactemail" size="20" id="contactemail"/></td></tr>
<tr><td width="10%">Message:&nbsp;</td><td>
<textarea rows="15" name="contactmessage" cols="40" id="contactmessage"></textarea></td></tr>
</table>
<input type="submit" value="Submit" id="SubmitButton"/>
</form>
<div id="notify"></div>

<small>Please do not abuse this form, doing so will result in an IP ban/e-mail ban/ and possibly an ISP ban.</small>

, when the user submits it, it goes to this javascript function
Code: [Select]
function SubmitContact(form)
{
var name = form.contactname.value;
var subject = form.contactsubject.value;
var email = form.contactemail.value;
var message = form.contactmessage.value;
var ip = '<!--#echo var="REMOTE_ADDR"-->';
form.contactname.className = "";
form.contactsubject.className = "";
form.contactemail.className = "";
form.contactmessage.className = "";

if (message.length < 10)
{
form.contactmessage.className = "error";
return false;
}

if (subject.length < 2)
{
form.contactsubject.className = "error";
return false;
}
if (email == "" || email.length < 2 || email.indexOf("@") < 1 || email.lastIndexOf(".") - email.indexOf("@") < 2 || email.indexOf("bugmenot") >= 1 || email.indexOf("mailinator") >= 1)
{
form.contactemail.className = "error";
return false;
}
form.contactname.disabled = true;
form.contactsubject.disabled = true;
form.contactemail.disabled = true;
form.contactmessage.disabled = true;
form.SubmitButton.disabled = true;
form.SubmitButton.value = "Submit";
document.getElementById("notify").innerHTML = "<center><strong><font color='green'>Sending...</font></strong></center>";
var prot = DICKBUTT();
prot.onreadystatechange = function()
{
if (prot.readyState == 4)
{
if (prot.status != "200")
{
document.getElementById("notify").innerHTML = "<strong><font color='red'>We're sorry!, we cannot process any requests at this time.</font></strong>";
}
document.getElementById("notify").innerHTML = "<strong><font color='green'>Thank you!, we will get back to you as soon as possible</font></strong>";
}
};

var params = "contactname="+name+"&contactemail="+email+"&contactsubject="+subject+"&contactmessage="+message+"&ip="+ip;
prot.open("POST", "processform.php", true);
prot.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
prot.setRequestHeader("Content-length", params.length);
prot.setRequestHeader("Connection", "close");
prot.send(params);
return false;
}

It then displays "Sent" or yadda yadda yadda, anyway, this is the "processform.php" file that is posted to

Code: [Select]
<?PHP
$name = $_POST['contactname'];
$email = $_POST['contactemail'];
$message = $_POST['contactmessage'];
$subject = $_POST['contactsubject'];
$id = date('l jS \of F Y h:i:s A');
$ip = $_POST['ip'];
$subject = $id." --- ".$_POST['contactsubject'];
$headers = "From: XE Contact Form \n".
"Reply-To: $email\n".
"X-Mailer: PHP/".phpversion();

$messagecom = "
#########################################\n".
"## THIS IS AN AUTO GENERATED E-MAIL    ##\n".
"#########################################\n".
"\n\n".
"Contact Name: $name \n".
"Contact e-mail: $email \n".
"Contact Number: $id \n".
"Contact IP: $ip \n".
"Subject: $subject \n".
"The contact has left the following message, \n\n".
"$message \n".
"#################################################################";

//this is where the contact form is sent to
$to = 'xiphirx@gmail.com';
(mail($to, $subject, $messagecom, $headers))
?>


Ok, the problem is that when I run this locally on my apache server, it works fine. When I upload it online (www.xeclan.co.nr) it totally fails.

Any thoughts?


70
Feedback / how Mods SHOULD be
« on: October 23, 2008, 12:26:13 am »
http://www.zfgc.com/forum/index.php?topic=31658.msg356829#msg356829
Minor Verbal Warning: Please refrain from outbursts like this. We were debating in the debating forum. Everyone has their opinions and unfortunately we're all individual so almost none of our ideals are gonna make anyone else happy.

Thanks, and have an awesome day :)

That is how Mods SHOULD be.

DJ get 1 thousand internetz for that.

<3

72
Discussion / My first online website.
« on: October 19, 2008, 09:01:47 pm »
http://xeclan.110mb.com/ NEW DOMAIN www.xeclan.co.nr :P looks more professional.

C+C Please, this is the first time I have uploaded one of my sites online.

Also, it's for a Clan for the game CSPSP, (Counter Strike PSP)

73
Other Discussion / lol drop it
« on: October 14, 2008, 12:52:26 am »
Seriously?

All I see on this forum is flaming, it would be great if all of you act maturely and drop it.

especially grudges against H_B.

kthxbai.

(btw, I'm not perfect either, I am dropping any grudges I have, which is just against MiN :P <3)

74
Entertainment / Does anyone here surf?
« on: October 11, 2008, 03:22:21 am »
I mean in Counter-Strike EDIT: Any Source game FINAL EDIT: CS 1.6, CSS, TF2 :P

So do any of you? If you do are you any good? If so, HALP, no really, but I would like to know any tips and how long it took you to get good. I have been surfing for about 3-4 months-ish and I can't even do surf_tutorial XD.

75
Coding / ehhh, noob question
« on: October 07, 2008, 02:32:23 am »
I just finished writing my Smiley Parser, and it is really strict.

if I type sahaflwhaglsdg:)liahgfkhal

That smiley in the middle will parse

alternatively

if I put a angry smiley like > : (

it puts > (sad smiley)

Code: [Select]
$smilies=array(
    ':)' => "<img src='img/smiley/smile.gif' alt=':)' />",
    '=)' => "<img src='img/smiley/smile.gif' alt='=)' />",
    '=]' => "<img src='img/smiley/smile.gif' alt='=]' />",

    ':(' => "<img src='img/smiley/sad.gif' alt=':(' />",
    '=(' => "<img src='img/smiley/sad.gif' alt='=(' />",
    '=[' => "<img src='img/smiley/sad.gif' alt='=[' />",

   ':S' => "<img src='img/smiley/confused.gif' alt=':S' />",
   '=S' => "<img src='img/smiley/confused.gif' alt='=S' />",

   '8)' => "<img src='img/smiley/cool.gif' alt='8)' />",

   ':,(' => "<img src='img/smiley/cry.gif' alt=':,(' />",

   ':drool:' => "<img src='img/smiley/drool.gif' alt='Drool' />",

   ':happy:' => "<img src='img/smiley/happy.gif' alt='Happy' />",

   '>:/' => "<img src='img/smiley/mad.gif' alt='>:/' />",
   '>=/' => "<img src='img/smiley/mad.gif' alt='>=/' />",
   '>:(' => "<img src='img/smiley/mad.gif' alt='>:(' />",
   '>=(' => "<img src='img/smiley/mad.gif' alt='>=(' />",

   '=_=' => "<img src='img/smiley/sleepy.gif' alt='=_=' />",

   ':O' => "<img src='img/smiley/surprised.gif' alt=':O' />",
   '=O' => "<img src='img/smiley/surprised.gif' alt='=O' />",

   ':P' => "<img src='img/smiley/tongue.gif' alt=':P' />",
   '=P' => "<img src='img/smiley/tongue.gif' alt='=P' />",

    ':D' => "<img src='img/smiley/grin.gif' alt=':D' />",
    '=D' => "<img src='img/smiley/grin.gif' alt='=D' />"
);

...


$entry=str_replace(array_keys($smilies), array_values($smilies), $entry); //Parse any available Smileys




76
Coding / Question
« on: October 05, 2008, 08:32:02 pm »
Say I had a .NET application that outputted text into a multi-line textbox. Is there any way I can program another program to get the output of that textbox?

What languages would be recommended for it?

77
Entertainment / Why hasn't anyone talked about The Conduit?
« on: October 04, 2008, 10:47:58 pm »
http://www.the-conduit.com/

With all of this talk about baby, casual Wii games, what do you guys say about this?









Yea, I like this game, it is going to be awesome! And a big step forward for Wii.


78
Coding / Hey, a little favor. (UPDATE)
« on: October 04, 2008, 09:38:24 pm »
Could you please go to

xeclan.110mb.com/?do=home

and tell me if the page functions/looks right? (I know, the links and the search are not done yet)

Just take a screenie for me and Shout something so I know the shoutbox is functional.

Comment on the site if you like.

: )

79
Discussion / Maya 8.5
« on: October 03, 2008, 07:55:11 pm »
So I am currently taking a Computer Animation class at my school. They are using Maya 8.5 (win). I looked at the progam firstly and pissed my pants.

We went through 2 projects so far and it is really fun! I usually finish my projects under the suggested time by far and have time to waste my life here on ZFGC :P

Like now.


So, I have gotten a basic feel. Have you guys tried 3D modeling?

(I just noticed that I should have put this in Other Discussion >_<)

80
Entertainment / Hello there godly computer...
« on: October 03, 2008, 07:28:52 pm »

Pages: 1 2 3 [4] 5 6 7

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



Page created in 0.018 seconds with 28 queries.

anything