Advertise Here

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.


Messages - nondier

Pages: [1] 2 3
1
Stylesheet Codes / Re: [Stylesheet] XBox 360 Elite
« on: July 01, 2009, 05:09:50 pm »
looks good sibyl

2
Gaming / Re: Guitar Hero's
« on: April 21, 2009, 07:45:10 pm »
i agree with underground but u forgot gh:metallica and rock the 80s

3
Advertise Your Board / KillScape
« on: February 19, 2009, 10:28:32 pm »
Forum Url: http://killscapepkz.smfforfree.com
well its awesome and the server is coming very soon but just chill out on the forums and have fun!!

4
Java / Re: Java Programs
« on: February 04, 2009, 07:49:41 pm »
ik a the best compiler... kk make a new file called compile.bat then put this in here..
Code: [Select]
@echo off
title compiling
javac *.java
pause
correct me if i made a mistike

and btw u dont need the "title compiling" thing it just makes it look more proffesional

5
Java / Re: Java for Beginners!
« on: February 04, 2009, 07:44:58 pm »
this is like the most used beginners java tutorial

6
General Support / Re: How do I add a holiday event to my server???
« on: January 17, 2009, 09:02:11 pm »
uhhh what do you mean server?

7
Programming / Re: What Are The BestPrograms Out there?
« on: January 04, 2009, 03:48:20 pm »
well what are the best programs for website making,graphics stuff like that!
web design pro... try that just google it to download it

8
C,C++ / Re: Rock paper scissors!
« on: January 04, 2009, 03:00:35 am »
Well, here's rock paper scissors in C++. Made in like 5 mins.


Code: [Select]
/*Script in C++. Rock paper sicrrors!. Enjoy.*/

#include <iostream>
#include <cstdlib>
#include <ctime>

         using namespace std;
    int main()
    {

    srand((unsigned)time(0));
    int choice;
    int againchoice;
    int computerchoice = (rand()%2)+1;
    cout <<"Type 0 for Rock, 1 for Paper and 2 for Scissors.\n";
    cin >> choice;
   
    if (choice == 0)
    {
              if (computerchoice == 0)
              cout << "It has resulted in a Tie!\n\n";
              else if (computerchoice == 1)
              cout << "Paper has beaten Rock. You have lost!\n\n";
              else if (computerchoice == 2)
              cout << "Rock has beaten Scissors. You have won!\n\n";
    }
   
    if (choice == 1)
    {
               if (computerchoice == 0)
               cout << "It has resulted in a Tie!\n\n";
               else if (computerchoice == 1)
               cout << "Paper has beaten Rock. You have won!\n\n";
               else if (computerchoice == 2)
               cout << "Scissors has beaten Paper. You have lost!\n\n";
   }
  
   if (choice == 2)
   {
              if (computerchoice == 0)
              cout << "It has resulted in a Tie!\n\n";
              else if (computerchoice == 1)
              cout << "Scissors has beaten Paper. You have won\n\n";
              else if (computerchoice == 2)
              cout << "Rock has beaten Scissors. You have lost!\n\n";
   }

   cout << "Would you like to play again? 1 for Yes and 2 for No.\n";
   cin >> againchoice;

   if (againchoice == 1)
   {
              system("cls");
              return main();
   }

              else if (againchoice == 2)
   {
              system("EXIT");
   }
}
Can't compile? I'll upload the .exe. (C++ compiles to .exe)
http://www.megaupload.com/?d=5ZX82RC6

Yes, it's clean. Scan yourself. I'm not uploading scan results to proove it is clean.
anyway we can do this without downloading?

9
General Support / Re: how do i...
« on: January 02, 2009, 03:28:37 am »
ty but that code didn't do anything

10
General Support / how do i...
« on: January 02, 2009, 01:33:09 am »
Forum Url: http://synysterscape.smfforfree.com
i was just wondering how to get my own logo like a highlighted

11
HTML / Re: Why isn't HTML popular?
« on: December 18, 2008, 08:45:23 pm »
well im not gonna argue with a mod...

BBCode is like a...translation of HTML. In a sense I guess it's a language...but...

Basically your forum takes BBCode and turns it into HTML...the BBCode is never seen by a browser(like Firefox or IE).
BBCode is never used to actually make up a webpage.
ok ty for pointing it out... no wonder it isnt mentioned on w3schools

12
Guides and Tutorials / Re: Add music to your forum
« on: December 17, 2008, 12:13:12 am »
Forum Url: http://synysterscape.smfforfree.com
theres alot of tuts on this including mine which is just like 10 topics below this topic

13
General Chat / Re: Anyone know a low-priced .net domain name server?
« on: December 15, 2008, 08:43:10 pm »
no-ip.com is ok

14
JavaScript / Re: Assistance Needed for Javascript Trailing Cursor
« on: December 15, 2008, 08:32:27 pm »
hmmm do u have the jquery in ur headers?

15
JavaScript / Re: Clock for ur forum
« on: December 15, 2008, 08:31:10 pm »
it works i tested it on w3schools

Pages: [1] 2 3