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

Pages: [1] 2 3 4
1
Development Showcase / AfterDark V2!
« on: January 29, 2011, 05:31:27 »
Current Version: 2.0
PLEASE NOTE: IF YOU HAVE v1.5 ALREADY INSTALLED, DELETE THE DATA.AD FILE! OTHERWISE, YOU WILL GET ERRORS.

AfterDark is an experimental platformer, it's kinda hard to explain it. Basically, you have to get as high as possible while dodging falling blocks, and using your cursor to move fallen blocks into your growing tower.

Download:
Go to Game's Page on GameJolt
Dont forget to leave a comment/rating!

Direct Download Latest Verson at GameJolt

Could i please ask that you do not download this, and upload it to medafire (or whatever)? Keeping it on GameJolt means i can keep track of it, see the statistics, etc. Thanks! :D

Screenshots:



Changelog:
v2.0 (current)
PLEASE NOTE: IF YOU HAVE v1.5 ALREADY INSTALLED, DELETE THE DATA.AD FILE! OTHERWISE, YOU WILL GET ERRORS.
    * Settings page
    * Online Highscores

v1.5
    * Improved help section
    * Fixed "Shield Bug"
    * New encrypted Save File Format
    * Game no longer defaults to full-screen

v1.0
    * Added Music
    * Added graphical effects
    * Added Highscores

LD 1.0
    * Original release, for Ludum Dare #18

2
Development Showcase / Minecraft wallpapers!
« on: November 19, 2010, 23:13:58 »
Just finished a set of minecraft wallpapers! Had a bit of fun with these!
It includes a ghast, a creeper, and a spider wallpaper.

LINKY

3
Collaborations / Musician Required!
« on: November 15, 2010, 11:32:46 »
Hello, me again!

I was hoping that i could get the help of one of the musicians on these forums. I need some sound for a game i am making. I would like it to be electronic-ish, ambient, and suit the mood and gameplay of the game (i will link it later in the post).

If you guys could make some short samples, I will give them a listen, and if it's what i'm looking for, i'll PM you with more details. If it isn't what i'm looking for, i'll try and give an explanation as to why.

Link to game:
LINKY

looking forward to seeing (and listening to) some nice music!

4
Knytt Stories - Custom Content / Unnamed Tileset (so far)
« on: October 01, 2010, 03:04:50 »
Well i was digging through the old WaDF2 thread, and i found the tileset i made for PYP to showcase my skills.



It's got lots of space, so any thoughts/suggestions?

Comments too please!

5
Development Showcase / AfterDark (LD#18)
« on: August 27, 2010, 00:49:09 »
Hiya, me again

Last weekend i participated in Ludum Dare #18, with the theme "Enemies as weapons"
Here is the final product
Competition page
Post-compo edition
Post-compoEdition(Mirror)

I suggest you play the post-compo version, it's more refined, but you can give the compo version a go as well.

Spoiler: Screenshots (click to show/hide)

6
Development Showcase / SoftSquare Icons
« on: August 09, 2010, 03:15:02 »
Me again :D

I've been working on an iconset, and I've posted it on dA! I'll update this as i add new icons
(click on the pictures to go to the site)

Spoiler: Adobe CS5 (click to show/hide)

7
About Nifflas' Website and Forum / The FiNCK theme is up!
« on: August 08, 2010, 00:06:26 »
Well, i have just checked, and the FiNCK theme is now available to choose as a forum theme  C)p

so, go take a look and see how you like it.



8
Collaborations / NSF FiNCK Theme
« on: June 17, 2010, 12:45:25 »
I've been working on a theme for NSF based on FiNCK!

I need feedback on everything. if you think something needs changing, tell me!

Requirements:
WaDF Theme active
Firefox with Stylish Addon (or any other browser that supports CSS injecting(or whatever you call it))

How to use
Make sure theme is set to WaDF
Right-click on your Stylish notifier and create a blank theme.
In the 'title' box, put 'FiNCK'
in the codebox, put the code in the spoiler below

CODE
ARGH! ITS TOO LONG!
I have updated the code, adding new buttons in. check attached for the code

Edit: slight edit to code to change colour inconsistencies

9
Much like the WaDF theme group, this is a place to talk / chat about all things Custom Themes, and tips / tricks on how to make 'em. If it gets to such a stage, maybe this will be a place to post your finished themes as well

A quick introduction to those who have no idea what i'm blurting about:
In the WaDF theme user's group, a discussion started about custom themes. So as not to go off-topic, I've set this board up.

But what IS a custom theme?
Also known as a userstyle, a custom theme is a css / javascript code which is added to the website you are viewing when you navigate to it. It only affects what you see, not everybody else. Please note: i might have made a mistake here, if so, point it out please  C)p

...soooo... how do i make one?
Well first you are going to need Firefox. NOTE: PLEASE NO BROWSERWARZ!. you are also going to need the Firefox addon Stylish. It's kinda hard to explain how to make the script themselves (i'm only just starting myself, but it is basically a css stylesheet which overwrites the site's own (i think). The best way to have a squiz at the site's existing stylesheet is Firebug. open this up, navigate to the CSS tab, and start fiddling. it's a good way of seeing what each thing does.

Well, ive had a look myself, and all you have to do is put in the things you want changed, followed by !important . again, it's hard to explain, so i've made an example

the following code will make codeblocks on NSF have no maximum height (good for reading the one below :D)
Code: [Select]
@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document domain("nifflas.lpchip.nl") {

.code {
max-height:none!important;
}
}

For those who don't want to install firebug, here is the CSS stylesheet for the main page (and i think the rest of the site as well):
Spoiler: Warning, lots of code (click to show/hide)

but how do i edit <img> tags?
to edit img tags:
Code: [Select]
img[title="exact title"] {
height: 0 !important;
width: 0 !important;
/* these numbers match the new image's dimensions */
padding-left: 125px !important;
padding-top: 25px !important;
background: url(http://example.com/your/image/here) no-repeat !important;

}
You can replace the [title=""] with any other attribute the element has. obviously if another element has the same attribute, it will change as well
Edit: New info added :D


NOTE:

If you are embedding images into your style, do this instead:
go to the image, and download it to your desktop
in the Stylish editor, go insert>Data URI
find the image and click OK

This will insert the data of the image, making the loading of a page faster, as it does not have to download the image.

10
FiNCK Level Editing Support / FiNCK Advance Features tutorial
« on: May 27, 2010, 14:08:51 »
Well, this is my first editor tutorial.
THIS IS NOT A TUTORIAL ON HOW TO USE THE EDITOR!
instead, it explains some of the more complicated aspects of level design. Currently, it covers:
  • Delimit mode
  • Custom objects
  • Physics

If there is anything else you think should be added, don't be afraid to point it out! by no means is this finished, and i want to make this as comprehensive as possible

(it's attached)

11
Creativity Support / game execution error
« on: April 28, 2010, 13:29:32 »
I was not sure where to post this, as it is affecting basically all of Nifflas' games.

I have recently made a USB install of Ubuntu, a linux distribution, which i boot on the school laptops :shifty:.
So that i can play nifflas' games in Ubuntu, i have installed WINE. some nifflas' games now work (WaDF, OS, Pteradragon, etc.), however most give an error message about not having acess to a .mfx extension, ranging from DirectoryPacker.mfx for KS & KSA to Nifflas.mfx for Saira.

Any help from all who have answers is greatly appreciated!

12
Quote from: nifflas.ni2.se
FiNCK will be released on April (May) 12! I'm also creating an online level database that will hopefully go online about a month after the release of FiNCK where people will be able to upload their Knytt Stories, The Mushroom Engine, Saira, and FiNCK levels, as well as levels for my future games.

LP, is this integrated into the level database you are working on, or has Nifflas just gone and undermined you're entire work?

13
Development Showcase / LD#17 - L'il Dudes and the floating islands
« on: April 26, 2010, 05:53:21 »
Well, i participated in LD#17 and made this little game. I will probably add more to it sooinsh.
anyways, i thought you people might be interested, so here's the link

LINKY

EDIT: Seeing as the compo is over, and i will be continuing work on this, if someone could make some music for it, that would be awsmoe! C)p

14
Development Showcase / ASCII Art
« on: April 23, 2010, 12:22:41 »
To save yourself from being trolled on world of text, post your ASCII art here as well. I will definitely be posting as many as possible.
NOTE TO MODS: Could we please have a unicode and monospace tag please? Sure, the [code] tag does that, but it would be nice if it could be in the standard theme colours, plus the code tag makes everything smaller, which is irritating.

EDIT:
ergh, putting it in code tags makes it look awful. MODS: could we please have a specialized ASCII tag that is always viewd in the same way, no matter the theme? If you plan to, the ASCII i just posted can be a good benchmark

Codes for the various characters generally used: (all numbers are on the numpad ONLY)

Alt+219


Alt+178


Alt+177


Alt+176


Bank 10, Object 4 (grey bouncer)
[ascii]
                    ██
                  ██▒▒██
    ████          ██▒▒██          ████
    ██▒▒██      ██████████      ██▒▒██
      ██▒▒██████░░░░░░░░░░██████▒▒██
      ████░░░░░░░░      ░░░░░░████
        ██░░░░░░          ░░░░▒▒██
        ██░░░░    ██████    ░░▒▒██
      ██░░░░░░░░  ██████  ░░░░▒▒▒▒██
  ██████░░░░░░░░░░░░░░░░░░░░░░▒▒▒▒██████
██▒▒▒▒██░░░░░░░░░░░░▒▒░░░░░░▒▒▒▒▒▒██▒▒▒▒██
  ██████░░░░░░░░░░▒▒▒▒▒▒░░░░▒▒▒▒▒▒██████
      ██░░░░▓▓░░░░░░░░░░░░▒▒▓▓▒▒▒▒██
        ██░░▓▓░░▓▓▓▓▒▒▒▓▓▓▒▒▓▓▒▒██
        ██░░░░▓▓░░▒▒▒▒▒▒▒▒▓▓▒▒▒▒██
        ████▒▒▒▒▒▒██████▒▒▒▒▒▒████
      ██▒▒██████▒▒▒▒▒▒▒▒▒▒██████▒▒██
    ██▒▒██      ██████████      ██▒▒██
    ████          ██▒▒██          ████
                  ██▒▒██
                    ██
[/ascii]

Main character from FiNCK
[ascii]
          ████████████████████
        ████████▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓
      ████████▓▓▓▓▓▓▓▓▒▒▒▒▒▒▒▒▒▒▒▒▒▒
    ████████▓▓▓▓▓▓▓▓▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
  ████████▓▓▓▓▓▓▓▓▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
████████▓▓▓▓▓▓▓▓▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
██████▓▓▓▓▓▓▓▓▒▒▓▓▓▓▒▒▓▓▓▓▓▓▓▓▓▓▓▓▓▓▒▒▒▒▒▒
██████▓▓▓▓▓▓▒▒▓▓▓▓▒▒▓▓░░░░░░░░░░░░░░▓▓▒▒▒▒
██████▓▓▓▓▓▓▒▒▓▓▓▓▓▓░░░░░░    ░░░░  ░░▓▓
██████████▓▓▓▓▓▓▒▒▒▒░░░░░░    ░░░░    
████████▓▓▓▓▒▒▓▓░░░░░░░░░░    ░░░░    
██████▓▓▓▓▓▓▒▒▓▓░░░░░░░░░░    ░░░░    
██████▓▓▓▓▓▓▓▓▓▓▒▒░░░░░░░░  ██░░░░██  
██████▓▓▓▓▓▓▓▓▓▓▓▓▒▒░░░░░░████░░░░████
██████▓▓██▓▓▓▓▓▓▓▓▒▒░░░░░░████░░░░████░░
██████▓▓██▓▓▓▓▓▓▓▓░░░░░░░░░░░░░░░░░░░░░░
██████▓▓██▓▓▓▓▓▓▓▓░░░░░░░░░░░░░░░░░░░░░░
██████▓▓██▓▓▓▓▓▓▓▓░░░░░░░░░░░░░░░░░░░░
██████▓▓██▓▓▓▓▓▓▓▓░░░░░░░░░░░░░░░░░░
██████▓▓██▓▓▓▓▓▓▓▓████
  ████▓▓██▓▓▓▓▓▓▒▒▒▒▒▒██
    ██▓▓██▓▓▓▓▓▓▒▒▒▒▒▒▓▓██
      ▓▓██▓▓▓▓▓▓▒▒▒▒▒▒▓▓██
        ██▓▓▓▓▓▓▒▒▒▒▒▒▓▓██
            ▓▓▓▓▒▒▒▒▒▒▓▓██
            ▒▒▓▓▒▒▒▒▒▒▓▓██
            ▒▒██▒▒▒▒▒▒▓▓██
            ▒▒██▒▒▒▒▒▒▓▓██
        ██  ▒▒██▒▒▒▒▒▒▓▓██
          ██████▒▒▒▒▒▒▓▓██
        ██████▓▓▒▒▒▒▒▒▓▓▒▒
          ██▒▒▓▓▒▒▒▒▒▒▓▓▓▓▒▒
          ██▒▒▓▓▒▒▒▒▒▒▓▓▓▓▒▒
        ██  ▒▒▓▓██░░░░░░░░▒▒
        ██  ▒▒▓▓██░░░░░░░░▒▒
        ██  ▒▒▓▓██░░░░░░▓▓▒▒
            ▒▒████▒▒▓▓▒▒▓▓▒▒
            ▒▒██▓▓▓▓▓▓▒▒▓▓▒▒
            ▒▒██▓▓▓▓▓▓▒▒▓▓▒▒
            ▒▒██▓▓▓▓▓▓▒▒▓▓▒▒
            ▒▒██▓▓▓▓▓▓▒▒▓▓▒▒
            ▒▒██▓▓▓▓▓▓▒▒▓▓▒▒
            ▒▒██▓▓▓▓▓▓▒▒▓▓▒▒
          ▒▒████▓▓▓▓▓▓▒▒▓▓▒▒
          ▒▒████▓▓▓▓▓▓▒▒▓▓▒▒
            ▓▓▓▓▓▓▓▓▓▓▓▓▓▓
            ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
            ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒


I'm not sure that i got this one as accurate as i did on WOT. If anyone has a screenie of the one i did on WOT before it got trolled, PM it to me and i'll edit this one to match.
[/ascii]


15
About Nifflas' Website and Forum / WaDF theme banner error
« on: April 18, 2010, 03:40:34 »
using the wadf theme, a large banner should be displayed across the top of the page. for me, on a widescreen, this always looked stretched. i have just noticed that it now looks like the attached screen shot. is this supposed to have happened?

Pages: [1] 2 3 4