Go to page 1, 2, 3, 4, 5 ... 15  Next  [ 297 posts ]  This topic is locked, you cannot edit posts or make further replies.Forum locked 
Author Message
 [br]
 Post subject: The Clipboard Game
PostPosted: Wed Sep 16, 2015 10:58 am 
User avatar
I Have Returned®
Member
[*]
[*]
[*]
[*]
[*]

[*]
[*]
[*]
[*]
[*]

[*]
[*]
[*]
[*]
Here's another dumb forum game for you all.
It's simple, just paste in a post the last thing that was in your clipboard (Ctrl+C)
rules:
-don't copy something just for the game
-images are accepted
-obviously if the last thing you copied is somehow against the rules of the forum do not post.

alright, let's begin :soveryhappy:

_________________
 
Top
Offline 
 User page at mfgg.net
 
 [at]
 Post subject: Re: The Clipboard Game
PostPosted: Wed Sep 16, 2015 11:13 am 
Cliax Codec X Splatoon
Member
[*]
[*]
[*]
[*]
[*]

[*]
[*]
[*]
[*]
[*]

[*]
[*]
[*]
[*]
[*]

[*]
[*]
LayerMask.NameToLayer("Bullet")

_________________
Image

Cliax Codec is a combination of top-down and third-person shooter. The gameplay will blend platforming, puzzle and shmup elements together to create a unique gameplay experience. You will take control of four playable characters which rise against a team that seemingly wants to take over the world - but are their motives really that cliché, or are there deeper motives behind their actions?

Currently designing Chapter 1-6, 5%

GOTM titles
Spoiler:
Fan Art
Spoiler:
 
Top
Offline 
 User page at mfgg.net
 
 [zz]
 Post subject: Re: The Clipboard Game
PostPosted: Wed Sep 16, 2015 11:22 am 
User avatar
Member
[*]
[*]
[*]
I would post it but the thing in my clipboard is my password. :laugh:

(Does this count for the game?)

_________________
HylianDev wrote:
Xandalf wrote:
i hate mfgg because they declined my call of duty and minecraft crossover fangame :angry:

Whoever did this is fired immediately

Image
 
Top
Offline 
 User page at mfgg.net
 
 [tr]
 Post subject: Re: The Clipboard Game
PostPosted: Wed Sep 16, 2015 11:57 am 
User avatar
Thanks DonnieTheGuy!
Administrator
[A]
[*]
[*]
[*]
[*]

[*]
[*]
[*]
[*]
[*]

[*]
[*]
[*]
[*]
[*]

[*]
[*]
[*]
[*]
[*]

[*]
ueufangaming@gmail.com

_________________
Image
 
Top
Offline 
 
 
 [us]
 Post subject: Re: The Clipboard Game
PostPosted: Wed Sep 16, 2015 12:07 pm 
User avatar
Always have a Shy-Guy in your avatar
Administrator
[A]
[S]
[W]
[*]
[*]

[*]
[*]
[*]
[*]
[*]

[*]
[*]
[*]
[*]
[*]

[*]
[*]
[*]
[*]
[*]

[*]
[*]
[*]
[*]
[*]

Oh yeah, it's been a while since I've seen this forum game. This is always fun.

However, my clipboard seems to be very unexciting at the moment. I don't know why I copied a single dash:

Vinny's clipboard wrote:
-

_________________
Course clear! You got a card.

Image
 
Top
Offline 
 User page at mfgg.net
 
 [br]
 Post subject: Re: The Clipboard Game
PostPosted: Wed Sep 16, 2015 12:53 pm 
User avatar
I Have Returned®
Member
[*]
[*]
[*]
[*]
[*]

[*]
[*]
[*]
[*]
[*]

[*]
[*]
[*]
[*]
Edit-Mode (NSMBU / Overworld)

_________________
 
Top
Offline 
 User page at mfgg.net
 
 [br]
 Post subject: Re: The Clipboard Game
PostPosted: Wed Sep 16, 2015 1:58 pm 
User avatar
Not a bird
Member
[*]
[*]
[*]
[*]
[*]

[*]
[*]
I have an image...


Attachments:
clipboardimage.png
clipboardimage.png [ 184 Bytes | Viewed 39191 times ]
_________________
Please contact me for any broken links below.
Spoiler:

Spoiler:
 
Top
Offline 
 
 
 [us]
 Post subject: Re: The Clipboard Game
PostPosted: Wed Sep 16, 2015 9:23 pm 
User avatar
Member
[*]
[*]
[*]
[*]
[*]

the wind
o_o

_________________
(11/28/2020) Looking back at most of the things I did here many years ago makes me feel embarrassed :p But hey, we all started somewhere on the internet I guess. This site is basically the only remains of how I was years ago, and I can't look back at what me from over 5 years ago thought was "comedy" without cringing haha

I don't know if I'll return here some day, but I thank you all for the memories coming back to me after looking through my old posts. (which I advise you not to look through if you want to stay sane) If I do return, I do know of the new forum's existence, I just felt like looking back at posts here instead since I was more active on this one.

May the holidays go good if you are reading this around the time I am putting this text in my signature.
 
Top
Offline 
 User page at mfgg.net
 
 [ca]
 Post subject: Re: The Clipboard Game
PostPosted: Wed Sep 16, 2015 9:49 pm 
User avatar
Untalented Pleb
Member
[*]
[*]
Syntax: [ Download ] [ Hide ]
Using lua Syntax Highlighting
if(input:down('move_left')) then
    cur_speed = cur_speed - (move_speed) * (dt * 8);
    --animState = smallRun;
    direction = -1;
  end

  if(input:down('move_right')) then
    cur_speed = cur_speed + (move_speed) * (dt * 8);
    --animState = smallRun;
    direction = 1;
  end

  if (cur_speed ~= 0) and not (input:down('run')) then
    animState = smallRun;
    if (cur_speed <= -top_speed/2) then
      cur_speed = -top_speed/2;
    elseif (cur_speed >= top_speed/2) then
      cur_speed = top_speed/2;
    end

    if(input:released('run')) and (has_jumped == false) then
      cur_speed = cur_speed - top_speed/2 * dt;
    end

  elseif (cur_speed ~= 0) and (input:down('run')) then
    animState = smallRun;
    if (cur_speed <= -top_speed) then
      cur_speed = -top_speed;
    elseif (cur_speed >= top_speed) then
      cur_speed = top_speed;
    end
  end


-----------

oh


Last edited by XerX on Wed Sep 16, 2015 10:16 pm, edited 1 time in total.
_________________
http://xnblank.net/
 
Top
Offline 
 User page at mfgg.net
 
 [at]
 Post subject: Re: The Clipboard Game
PostPosted: Wed Sep 16, 2015 10:02 pm 
Cliax Codec X Splatoon
Member
[*]
[*]
[*]
[*]
[*]

[*]
[*]
[*]
[*]
[*]

[*]
[*]
[*]
[*]
[*]

[*]
[*]
Syntax: [ Download ] [ Hide ]
Using csharp Syntax Highlighting
//TO-DO
    void OnCollisionStay(Collision col) {
        if (col.gameObject.tag == "Landscape") {
            Vector3 speed = transform.position - transform.parent.parent.GetComponent<Movement>()._prevPos;
            transform.parent.parent.GetComponent<CharacterController>().Move(col.contacts[0].normal);
        }
    }


aka Dump Your Code Topic

_________________
Image

Cliax Codec is a combination of top-down and third-person shooter. The gameplay will blend platforming, puzzle and shmup elements together to create a unique gameplay experience. You will take control of four playable characters which rise against a team that seemingly wants to take over the world - but are their motives really that cliché, or are there deeper motives behind their actions?

Currently designing Chapter 1-6, 5%

GOTM titles
Spoiler:
Fan Art
Spoiler:
 
Top
Offline 
 User page at mfgg.net
 
 [us]
 Post subject: Re: The Clipboard Game
PostPosted: Wed Sep 16, 2015 10:03 pm 
User avatar
D:
Member
[*]
[*]
[*]
[*]
[*]

I wished we had more time to spend together - but all good things come to an end, eventually.

_________________
I support:
Image
Spoiler:
 
Top
Offline 
 User page at mfgg.net
 
 [ca]
 Post subject: Re: The Clipboard Game
PostPosted: Wed Sep 16, 2015 10:06 pm 
User avatar
sluuuuurp
Member
[*]
[*]
[*]
[*]
[*]

[*]
[*]
[*]
[*]
[*]

[*]
[*]
[*]
[*]
[*]

[*]
[*]
[*]
[*]
[*]

https://www.youtube.com/watch?v=Smm6DpryUeI

_________________
DO NOT under estimate this lakitu to much or it will be the end of that life (note: do not over estimate him either).
Image
Spoiler:
 
Top
Offline 
 User page at mfgg.net
 
 [cl]
 Post subject: Re: The Clipboard Game
PostPosted: Wed Sep 16, 2015 10:37 pm 
User avatar
Member
[*]
[*]
[*]
[*]
[*]

[*]
[*]
[*]
[*]
[*]

[*]
[*]
LA1637NSZH2ERHU4RV838MHNN

_________________
Image
im immature af
 
Top
Offline 
 User page at mfgg.net
 
 [us]
 Post subject: Re: The Clipboard Game
PostPosted: Wed Sep 16, 2015 10:42 pm 
I hate yellow balls of consumption.
Member
[S]
[*]
[*]
[*]
[*]

[*]
[*]
[*]
[*]
[*]

[*]
[*]
[*]
[*]
[*]

[*]
[*]
[*]
[*]
[*]

[*]
[*]
[*]
if place_meeting(x,y,obj_mario) and hspd=0 and !hurtmario {if obj_mario.x<x hspd=2; else hspd=-2}
I would have more interesting code to paste if I didn't procrastinate with my minigame.

_________________
GOTM Awards:
Spoiler:
ImageImage
 
Top
Offline 
 User page at mfgg.net
 
 [hr]
 Post subject: Re: The Clipboard Game
PostPosted: Thu Sep 17, 2015 3:27 pm 
User avatar
The Ultimate Company
Member
Image

You know who it is, right?

_________________
Image
 
Top
Offline 
 User page at mfgg.net
 
 [br]
 Post subject: Re: The Clipboard Game
PostPosted: Thu Sep 17, 2015 6:07 pm 
User avatar
Not a bird
Member
[*]
[*]
[*]
[*]
[*]

[*]
[*]
RWQFSFASXC

_________________
Please contact me for any broken links below.
Spoiler:

Spoiler:
 
Top
Offline 
 
 
 [hr]
 Post subject: Re: The Clipboard Game
PostPosted: Thu Sep 17, 2015 8:36 pm 
User avatar
The Ultimate Company
Member
viewtopic.php?f=59&t=17914&p=459634#p459634

_________________
Image
 
Top
Offline 
 User page at mfgg.net
 
 [us]
 Post subject: Re: The Clipboard Game
PostPosted: Thu Sep 17, 2015 8:40 pm 
User avatar
Member
[*]
[*]
[*]
[*]
[*]

sick
ok my clipboard is still weird

_________________
(11/28/2020) Looking back at most of the things I did here many years ago makes me feel embarrassed :p But hey, we all started somewhere on the internet I guess. This site is basically the only remains of how I was years ago, and I can't look back at what me from over 5 years ago thought was "comedy" without cringing haha

I don't know if I'll return here some day, but I thank you all for the memories coming back to me after looking through my old posts. (which I advise you not to look through if you want to stay sane) If I do return, I do know of the new forum's existence, I just felt like looking back at posts here instead since I was more active on this one.

May the holidays go good if you are reading this around the time I am putting this text in my signature.
 
Top
Offline 
 User page at mfgg.net
 
 [hr]
 Post subject: Re: The Clipboard Game
PostPosted: Fri Sep 18, 2015 9:27 pm 
User avatar
The Ultimate Company
Member
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas porttitor congue massa. Fusce posuere, magna sed pulvinar ultricies, purus lectus malesuada libero, sit amet commodo magna eros quis urna. Nunc viverra imperdiet enim. Fusce est. Vivamus a tellus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Proin pharetra nonummy pede. Mauris et orci. Aenean nec lorem. In porttitor. Donec laoreet nonummy augue. Suspendisse dui purus, scelerisque at, vulputate vitae, pretium mattis, nunc. Mauris eget neque at sem venenatis eleifend. Ut nonummy. Fusce aliquet pede non pede. Suspendisse dapibus lorem pellentesque magna. Integer nulla. Donec blandit feugiat ligula. Donec hendrerit, felis et imperdiet euismod, purus ipsum pretium metus, in lacinia nulla nisl eget sapien.
Donec ut est in lectus consequat consequat. Etiam eget dui. Aliquam erat volutpat. Sed at lorem in nunc porta tristique. Proin nec augue. Quisque aliquam tempor magna. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nunc ac magna. Maecenas odio dolor, vulputate vel, auctor ac, accumsan id, felis. Pellentesque cursus sagittis felis. Pellentesque porttitor, velit lacinia egestas auctor, diam eros tempus arcu, nec vulputate augue magna vel risus. Cras non magna vel ante adipiscing rhoncus. Vivamus a mi. Morbi neque. Aliquam erat volutpat. Integer ultrices lobortis eros. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Proin semper, ante vitae sollicitudin posuere, metus quam iaculis nibh, vitae scelerisque nunc massa eget pede. Sed velit urna, interdum vel, ultricies vel, faucibus at, quam. Donec elit est, consectetuer eget, consequat quis, tempus quis, wisi.

_________________
Image
 
Top
Offline 
 User page at mfgg.net
 
 [zz]
 Post subject: Re: The Clipboard Game
PostPosted: Fri Sep 18, 2015 11:08 pm 
User avatar
Member
[*]
[*]
[*]
[*]
[*]

[*]
[*]
[*]
[*]
[*]

[*]
[*]
[*]
[*]
[*]

[*]
[*]
[*]
[*]
[*]

[*]
[*]
[*]
[*]
[*]

[*]
Waluigious

_________________
Image
 
Top
Offline 
 User page at mfgg.net
 
« Previous topic | Next topic »
Display posts from previous:  Sort by  
Go to page 1, 2, 3, 4, 5 ... 15  Next  [ 297 posts ]  This topic is locked, you cannot edit posts or make further replies.Forum locked 


Who is online

Users browsing this topic: No registered users and 3 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum
Jump to:  
cron
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group