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

Pages: 1 ... 120 121 [122] 123 124 ... 132
1816
Announcements! The Town Crier! / The Exilian Games
« on: October 09, 2009, 08:42:54 PM »
Due to a lack of activity, we have decided that this year's Exilian Games are to be terminated without finishing the events. We apologise for any and all inconvenience.

Thanks,

Exilian Staff

1817
Southern Realm / BUG REPORTS
« on: October 04, 2009, 07:13:28 PM »
Right, I'm going to keep a proper bugs thread for this release. please give as conclusive and detalied a report as you can of all bugs you find in SR.

KNOWN BUGS
- Sea battles are autoresolve only.
- There are still some problems with making camp while at sea.
- Parts of the sea look screwed up, this is a mapping issue which may or may not be fixable.
- Some scenes are missing, particularly in areas such as the Voroks or Geroia.

FIXED BUGS FOR NEXT RELEASE

1818
Southern Realm / NEW SCREENIE THREAD
« on: October 04, 2009, 07:10:31 PM »
Please post any and all screenies of the new version here, I'd love to see some!

1819
Announcements! The Town Crier! / Southern Realms, New Release
« on: October 04, 2009, 07:07:31 PM »
A new beta of Southern Realms is out. Please mosey along to the SR forum and check it out!

1820
Announcements! The Town Crier! / I'm taking a break
« on: September 28, 2009, 05:52:00 PM »
I've got too much work and I'm stressed out of my tiny shrivelled brain, so I'm officially taking a break for 2-3 weeks from admin work on the site. Please could all admin requests go to Marcus or CG in that time, thanks.

I'll still be around a bit for modding and so on, though.

Thanks guys,


Jubal

1821
Game & program tutorials / Jubal's Web Tutorials 1: Basic HTML
« on: September 21, 2009, 07:57:52 PM »
Computer literacy, like any other form of literacy, comes in 2 parts. You have to be able to read: to use software and do the front end of computing. But to be fully computer literate you need to be a dab hand at producing things for Computers, and the most powerful form of that is being able to program and create internet pages.

This tutorial will show you how to use basic HTML. HTML is Hyper-Text Markup Language, and is the standard way of making web pages everywhere.

First things first, you need to tell the computer that your file is a webpage. Open up a document in notepad.

Type:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
At the beginning. Ignore the doctype section for now - it makes sure browsers will render your HTML correctly, and should be put before every page you do, but otherwise can be left alone. Okay, onto the important bit. You have opened the HTML tag - everything within is now known to be a webpage. All tags, as they are known, are done in this format, with the tag name surrounded by pointy brackets. Tags are used to declare anything - images, links, sections of the page, and so on. Now we need to close the tag to end the file. This is done by adding a forward slash after the first pointy bracket;
</html>

Right, you can get on typing then? Well, sadly not. The webpage code has to be divided into two main sectors - the header (<head> tag), used for containing invisible information, and the body (<body> tag), which actually contains the content of the page. The head comes first, then the body, and both have to be within the HTML tag. In fact, EVERYTHING has to be within the HTML tag. If anything ends up outside it, something is wrong. Okay, now try putting your head and body tags in.

You should now have something like this;

Spoiler (click to show/hide)

Right, now all we need to do is save it as a webpage. Press save as, and find somewhere to save your file. Select "all files" rather than .txt, and at the end of the filename you want add ".html" - this will tell the computer that the file is a webpage. If you now save your file and find it with Windows Explorer, you should be able to open it with a web browser. Well done - your first webpage!

Wait a minute, though - it's blank. It doesn't have ANYTHING on it at all. Right, open up the file again in notepad; we've got work to do.

The first thing you probably want to do is add text. That's simple, at least, type it in the body. Save the file, and it should now appear when you open the webpage. But supposing we want to add a title? Firstly, we have to look at how to get the text on a separate line. But isn't that easy - you can just press enter? Not in HTML - you need to tell the browser that you're putting in a line break. This is achieved with the little
 tag. Anything before and after the tag is on separate lines, it's as easy as that. Adding several will put blank lines in. Note that br is a tag that DOES NOT need to be closed.

Okay, you should now have your title and text separate, but they are still both boringly the same. So what can you do to make the title look all lovely and titleish? Add one of the heading formatting tags. This little happy tag family has 3 members - H1, H2, and H3. H1 makes the text biggest, H2 less so, H3 still less so. Just enclose your text with <h1></h1> and you have nice big text! The other simple formatting tags you should know about now are
Code: [Select]
<b> (bold) and
Code: [Select]
<i> (italic). These work in the same way as the H1/2/3 family.

Finally in this basic session, we'll look at how to add a bit of colour to our webpage. The first thing here is to learn that some tags have attributes. Attributes tell the computer what do with the contents of a tag. Each tag has its own set of possible attributes (and many, particularly simple ones such as
 or <h1> have no attributes at all). The body tag has a lot of attributes, that can set basic features of the page.

Attributes go inside the pointy brackets but after the tag name, and go in the format <tagname attribute="formofattribute">. In the body tag, we'll give it the color (which here is text colour) and bgcolor (background colour) attributes. Technically it's best to use HTML colour codes for these, but for cimple colours the colour names are just as good.

So we can have:
Spoiler (click to show/hide)

Note that the body closing tag remains unchanged. The above should turn your background green and your text white; feel free to mess with the colours - any of red, blue, green, white, black, and yellow should work fine. Use them lowercase and make certain they are spelt correctly, though. The computer may know what "green" is but "grean" is as far as it is concerned utterly different (and in this case fully incomprehensible).

So your final code might look like this:
Code: [Select]
<html>
<head>
</head>
<body bgcolor="green" color="white">
<h1>My Webpage</h1><br>
This is <b>MY</b> webpage. Marvel at its sheer <i>awesomeness.</i>
</body>
</html>

Right, congratulations! You can now make basic webpages. Next time, we'll move on to adding images, more advanced text formatting, background images and of course the main point of webpages as opposed to documents: the hyperlink.

1822
M&B Mods - The Explorer's Society / I need a hand cannon
« on: September 07, 2009, 10:23:16 AM »
Could anyone try making me a hand cannon? As in a musket/gun weapon that literally looks like a holdable size cannon. The earliest handheld firearm, in other words.

1823
General Chatter - The Boozer / Please help with a science experiment
« on: August 30, 2009, 04:32:58 PM »
My sister's been doing a project on visual banding in the Fen Raft Spider, Dolomedes plantarius. To test whether the banded or unbanded varieties are more visible to predators, we've built this piece of testing software - basically a little game where you spot and click on the spiders as fast as possible with a 30-second time limit. Please take the test and send it to all your friends (doing the test more than once is not allowed as it skews our results, though).

All participants will also be entered into an e- prize draw (prize to be announced).

www.wavcott.org.uk/dolomedes/game

Many thanks,

Jubal

1824
Mount and Blade Discussion - Sargoth Town Square / Mods and money
« on: August 05, 2009, 11:42:02 AM »
http://forums.taleworlds.net/index.php/topic,71576.0.html

That can explain this better than I can. Basically Paradox (M&B's Publisher) are thinking of releasing a sold pack with some mods in, and paying the modders.

This is why I think it's a bad idea...
Quote
I don't like the idea of commercial modding, simply because it creates what's very much a two-tier system. In teams as loosely organised as many on TW, I can see MAJOR issues coming up with rights to profit and percentage splits. Also, what about OSP packs? What about people using each other's work? The sharing of code and files among the community is now very widespread. For example if I were to become a paid modder with SR, are James, Mirathei, Nema, et cetera, entiled to part of my profits for my use of their models and code? What about people who are "on the team" but have only really made a couple of scenes?
What if, for example, a modder got a model from SR and used it as part of a sold mod? Since that model is from my mod, can I request that he pays me for it, or can I tell him to remove it?

If modders worked totally on their lonesome, or in a completely insular team (and that said, a few do) this would work fine. However, in the file-sharing, open-source nature of the modding community we could see REAL issues coming up due to this.

Right, so what are people's opinions on this...?

1825
Mount and Blade Discussion - Sargoth Town Square / Warband Discussion
« on: August 05, 2009, 11:30:57 AM »
M&B Warband draws ever closer...

So how will you play in Multiplayer? What kit? Who do you want on your team?

1826
General Chatter - The Boozer / Omegle Lulz
« on: July 27, 2009, 12:04:25 PM »
Omegle is a wierd site which essentially starts a convo like on MSN, but with a random stranger. This can lead to funny results...

These are my best thus far.

A McDonalds internet service goes wrong;
Spoiler (click to show/hide)

And a gondorian knight discovers the power of Bricks;
Spoiler (click to show/hide)

1827
Announcements! The Town Crier! / 500!
« on: July 21, 2009, 03:08:31 PM »
Yes siree ladies and gentlemen, over 500 of us now are registered on this little piece of the interwebs. To the boozer! Break out the e-beer!  :P

1828
General Gaming - The Arcade / Urban Terror - Clan Exilian
« on: July 19, 2009, 10:35:52 AM »
Sign up for our Exilian Urban Terror clan! And discuss it and shizzzle!

Members;
Jubal
GMD
Sudobaal
robert
Goldyrulez
Darkstar707

1829
General Chatter - The Boozer / What level of education are you at?
« on: July 12, 2009, 12:27:25 PM »
What level of education are you at, and where are you planning to get to?

I haven't done my GCSEs yet, but I should get a pretty nifty set of grades according to predictions. I definitely want to go to a good Uni, prolly to do History.

My main choice in education coming up is what 3/4 A levels I'm gonna do, and whether I'm going to stay at my current school (a comprehensive). I'm not worried about my grades, but other schools have more extracurricular stuff. The other main options for are two of the public schools in the nearest city. One has my sister at the moment in 6th form, and has a very good range of extras, besides generally a more academic background to my current school. The other is a Catholic school (those who know my view on the Catholic church will see why this is worth mentioning) but the good thing about it is that it does the International Baccelaureate rather than A levels, which offers a broader range of subjects.

1830
General Chatter - The Boozer / Explain your username
« on: July 07, 2009, 07:31:28 PM »
What the title says.

Pages: 1 ... 120 121 [122] 123 124 ... 132