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

Pages: 1 [2] 3 4 ... 53
11
Other Games / Re: Wolf soul is back!!
« on: December 02, 2023, 02:40:09 am »
Nice. I met the owner of that game back when I was working for Tribes of Wild and they were playing that game.

12
Game Discussion / Re: Empty...GROUNDS!?
« on: December 02, 2023, 02:36:49 am »
These days it's normal for the grounds to be empty or practically empty whenever I play.

13
Community Activities Hub / Re: FH Autumn Party 2023
« on: November 19, 2023, 03:41:45 am »
Had a fun time! Glad to see a good few people online! Thanks for hosting, Dylan!

You're welcome.

14
Community Activities Hub / Re: FH Autumn Party 2023
« on: November 18, 2023, 02:57:17 pm »
Quick question.  Usually when there's a party they do a vote on what day works for people. Do they not do that anymore or did i miss it? XD
Either way, I'll have to attend this after work! :3
Look like a gorgeously made map from that screenshot. Can't wait to run around in it!


Well, this isn't an official party and I have to do it on a day I am available to host it. Which is Saturday or Sunday. And most people appear to be busy on Sundays. I don't think official parties have a vote for the day anymore either, but Ame could probably answer that better than I could.

15
Community Activities Hub / FH Autumn Party 2023
« on: November 12, 2023, 01:57:27 am »
Feral Heart Autumn Party 2023

As the leaves start to fall from the trees and the wind starts to grow colder, we all know that that special time of year when we feel extra thankful is quickly approaching. So pull up a chair (or a log), relax by the fire, and enjoy the beautiful sunset in the wild atmosphere that only FH can instill in your hearts.

Date: 11/18/2023
Time: 4 PM EST
Map: https://drive.google.com/file/d/1Z4PQEhs0bRDzguvrJ4QFFLFBEGQFlR_E/view?usp=drivesdk

16
Discussion Board / Re: Web Development - HTML
« on: October 31, 2023, 01:28:51 am »
Today I will teach you about lists. Let's start by making a copy of the page from lesson 1 and pasting the following HTML into the body of the webpage:
Code: [Select]
<h4>Ordered List</h4>
<ol>
    <li>First Item</li>
    <li>Second Item</li>
    <li>Third Item</li>
</ol>
<br>
<h4>Unordered List</h4>
<ul>
    <li>First Item</li>
    <li>Second Item</li>
    <li>Third Item</li>
</ul>

The "ol" tag creates an ordered list. Ordered lists have numbered items. Each item is created with the "li" tag. Likewise, unordered lists are created with the "ul" tag and each item has just a bullet point next to it. Also, the "br" tag can be used to leave a blank line between other elements.

17
Discussion Board / Re: Web Development - HTML
« on: October 29, 2023, 02:51:13 am »
For today's lesson, I will teach you how to create tables. Tables can be used to display tabular data or be used to control the layout of a webpage. Let's start by copying the page from the first lesson and pasting this HTML into the body of the webpage:
Code: [Select]
<table>
    <tr>
        <th>Heading 1</th>
        <th>Heading 2</th>
        <th>Heading 3</th>
    </tr>
    <tr>
        <td>Row 1 Col 1</td>
        <td>Row 1 Col 2</td>
        <td>Row 1 Col 3</td>
    </tr>
    <tr>
        <td>Row 2 Col 1</td>
        <td>Row 2 Col 2</td>
        <td>Row 2 Col 3</td>
    </tr>
    <tr>
        <td>Row 3 Col 1</td>
        <td>Row 3 Col 2</td>
        <td>Row 3 Col 3</td>
    </tr>
</table>

The "table" tag is used to create a table, the "tr" tag is used to create a row, the "td" tag is used to create a cell within a row, and the "th" tag is used to create a heading within a row.

18
Art Gallery / Re: DylanCheetah's Art Gallery
« on: October 29, 2023, 02:39:27 am »
Jennifer the Horse (by SneakPaws)

19
Discussion Board / Re: Web Development - HTML
« on: October 29, 2023, 02:36:25 am »
These are helpful to anyone brand new to html! I actually learnt all of this from my time on the internet over the years. Ahh the good days of messing with old DA custom boxes, websites and Tumblr lol.

Hopefully, a lot of people will find this info helpful. I have more than just HTML to share too.

20
Art Gallery / Re: DylanCheetah's Art Gallery
« on: October 28, 2023, 03:24:02 am »
Fiona the Fox (by SneakPaws)

Pages: 1 [2] 3 4 ... 53