Jump to content

Photo

AN IDEA!


  • Please log in to reply
12 replies to this topic

#1 NineLives

NineLives

    Boom. Zoom. Dakota.

  • Members
  • Location:Los Angeles, California

Posted 16 December 2007 - 09:07 PM

I got an idea.
Make a Zelda Point and click game

You can have custom bosses which you AID link with a hand and just click click.

Locked doors are solids,and get keys to open them, and you enter a new area for link!
Every screen contains link doing something, playing whistle, sleeping....

for bosses
you can have link charge his sword by rapdily clicking on his sword while it charges (just put an enemy there or seomthing that won't move) and secrets and all taht stuff...

and...
etc.

#2 Moonbread

Moonbread

    Playing With Psychos

  • Members
  • Pronouns:They / Them

Posted 17 December 2007 - 05:07 PM

You've got Phantom Hourglass on your mind too much icon_razz.gif

#3 Titanium Justice

Titanium Justice

    Justice is served!

  • Members
  • Real Name:Jared
  • Location:Ontario

Posted 17 December 2007 - 05:29 PM

That's a cool idea icon_thumbsup.gif And it would be very possible.
I would love to control a boomerange or even a hookshot using my mouse, that would be sweet!

Edited by HeavyTitanium, 17 December 2007 - 05:30 PM.


#4 Mitchfork

Mitchfork

    no fun. not ever.

  • Members
  • Real Name:Mitch
  • Location:Alabama

Posted 17 December 2007 - 06:59 PM

Unique idea, but using ZC to do it would be like using a toaster to iron a shirt.

#5 Joe123

Joe123

    Retired

  • Members

Posted 18 December 2007 - 12:59 PM

CODE
//
// "Mouse Cursor"
// FFC follows mouse.
// Use sparingly!
//
ffc script MouseCursor {
  void run() {
    while(true) {
      this->X = Link->InputMouseX+8;
      this->Y = Link->InputMouseY+8;
      Waitframe();
    }
  }
}


Tis a start, no?
icon_wink.gif

#6 Fuzzy

Fuzzy

    Wizard

  • Members
  • Real Name:Rachel
  • Location:Mississippi

Posted 18 December 2007 - 01:07 PM

QUOTE(Ebola Zaire @ Dec 17 2007, 05:59 PM) View Post

Unique idea, but using ZC to do it would be like using a toaster to iron a shirt.

I did that once after Hurricane Katrina. Worked out fine. It looks like Joe123's script will, too.

#7 Joe123

Joe123

    Retired

  • Members

Posted 18 December 2007 - 02:12 PM

Nono, that's _L_'s script, not mine.
Just quoting from the Neofirst script file, should've said, sorry.

Edited by Joe123, 18 December 2007 - 02:12 PM.


#8 Russ

Russ

    Caelan, the Encouraging

  • Administrators
  • Location:Washington

Posted 18 December 2007 - 03:16 PM

You know, I have been thinking about doing a mouse contolled game ever since the mouse contorles were added. Would be fairly simple to script. Maybe if a bunch of people help, we could make Phantom Hourglass ZC. Minus the 3D sections though.

#9 Dark Nation

Dark Nation

    Recipient of Ways

  • Members

Posted 18 December 2007 - 04:21 PM

How about this one?

CODE

//
// "Mouse Cursor"
// FFC follows mouse.
// Use sparingly!
//
ffc script MouseCursor {
  void run() {
    while(true) {
      this->X=Link->InputMouseX;
      this->Y=Link->InputMouseY;
      if(Link->X+8 < Link->InputMouseX)
      {
        Link->InputRight=true;
      }
      else if(Link->X+8 > Link->InputMouseX)
      {
        Link->InputLeft=true;
      }
      if(Link->Y+8 < Link->InputMouseY)
      {
        Link->InputDown=true;
      }
      else if(Link->Y+8 > Link->InputMouseY)
      {
        Link->InputUp=true;
      }
      Waitframe();
    }
  }
}


Set the ffc to an arrow combo (like the mouse arrow in ZQuest). For some reason, it's not drawing the cursor in the game engine for me, though. Also, it won't really work right unless you turn on diagonal movement.

Edited by Dark Nation, 18 December 2007 - 04:22 PM.


#10 Mitchfork

Mitchfork

    no fun. not ever.

  • Members
  • Real Name:Mitch
  • Location:Alabama

Posted 18 December 2007 - 06:28 PM

QUOTE(fuzzyman @ Dec 18 2007, 12:07 PM) View Post

I did that once after Hurricane Katrina. Worked out fine. It looks like Joe123's script will, too.
Exactly. You COULD do it, but given the alternative, you'd definitely use the iron, right? I'm not saying that this coudn't work, but if you're looking to create something like this, there are far better-suited methods.

#11 Joe123

Joe123

    Retired

  • Members

Posted 18 December 2007 - 06:46 PM

Personally I'd rather try and make a Point and Click game in ZC than iron a shirt with a toaster =P

#12 ShadowTiger

ShadowTiger

    The Doctor Is In

  • Members

Posted 18 December 2007 - 06:54 PM

QUOTE
DN's Post and Script
Yes, but is there a click function! icon_razz.gif

The idea on its own is amazing, certainly. All we can do at the moment is to circle things with the mouse to interact with them, or to nudge or slash them. Would be ... interesting ... to script.

#13 Joe123

Joe123

    Retired

  • Members

Posted 18 December 2007 - 07:01 PM

You could have the 'click' just be pressing A or L or R or whatever instead of the mouse button.

Not all too hard to do I shouldn't think.


1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users