Page 9 of 12 FirstFirst ... 56789101112 LastLast
Results 81 to 90 of 116

Thread: Help with Lua

                  
   
  1. #81
    DCEmu Old Pro BL4Z3D247's Avatar
    Join Date
    Jun 2006
    Location
    BL4Z3D 24/7 in CT
    Posts
    1,970
    Rep Power
    83

    Default

    see ya on the flipside fg-54

  2. #82
    DCEmu Reviewer fg-54's Avatar
    Join Date
    Jun 2006
    Location
    gainesville
    Age
    33
    Posts
    726
    Rep Power
    73

    Default

    Great, now I would appreciate in knowing which path you have chosen.
    are you talking to shadowblind or me? well if you are talking to me i'm gonna see what pygame can do, and if its less limited then game maker i'll stick with that.

  3. #83
    DCEmu Reviewer fg-54's Avatar
    Join Date
    Jun 2006
    Location
    gainesville
    Age
    33
    Posts
    726
    Rep Power
    73

    Default

    i know, but there are about 20 different downloads there, wich one is the engine?

  4. #84
    GP2X Coder/Moderator
    Join Date
    Jan 2006
    Posts
    1,678
    Rep Power
    87

    Default

    Quote Originally Posted by fg-54
    are you talking to shadowblind or me? well if you are talking to me i'm gonna see what pygame can do, and if its less limited then game maker i'll stick with that.
    Define limited, it has its own scripting engine that you can use so I cant see where the limits would be for a beginner like you.

  5. #85
    GP2X Coder/Moderator
    Join Date
    Jan 2006
    Posts
    1,678
    Rep Power
    87

    Default

    Quote Originally Posted by fg-54
    i know, but there are about 20 different downloads there, wich one is the engine?
    The one under Windows which is the operating system that you are using.

    And RTFM: http://rene.f0o.com/mywiki/PythonGameProgramming

    Why am I going to get the feeling you are going to get the same problems again?

  6. #86
    DCEmu Reviewer fg-54's Avatar
    Join Date
    Jun 2006
    Location
    gainesville
    Age
    33
    Posts
    726
    Rep Power
    73

    Default

    ..i dun know...anyways, i'll go to bed now, thanks again for you'r help, i'll just download everything until something comes up, bye!

  7. #87
    GP2X Coder/Moderator
    Join Date
    Jan 2006
    Posts
    1,678
    Rep Power
    87

    Default

    WTF? I give up. I really do.

  8. #88
    DCEmu Old Pro BL4Z3D247's Avatar
    Join Date
    Jun 2006
    Location
    BL4Z3D 24/7 in CT
    Posts
    1,970
    Rep Power
    83

    Default

    yaustar deep breaths, in and out...there u go

  9. #89
    GP2X Coder/Moderator
    Join Date
    Jan 2006
    Posts
    1,678
    Rep Power
    87

    Default

    Does fg-54 even know what a programming language is?

  10. #90
    DCEmu Reviewer Shadowblind's Avatar
    Join Date
    Apr 2006
    Location
    PR:SB End
    Posts
    3,796
    Rep Power
    115

    Default

    This did not work. Why?

    -- Lua Project 2
    -- Author: Shadowblind

    -- Blue Color Object
    blue = Color.new(0, 255, 0)
    upPressed = 'You are pressing the "UP" button'
    downPressed = 'You are pressing the "DOWN" button'
    leftPressed = 'You are pressing the "LEFT" button'
    rightPressed = 'You are pressing the "RIGHT" button'
    -- *****Main Loop******
    while true do
    screen:clear()
    pad = Controls.read()
    if pad:up() then
    screenrint(100,100,upPressed,green)
    end
    if pad:down() then
    screenrint(100,100,downPressed,red)
    end
    if pad:left() then
    screenrint(100,100,leftPressed,blue)
    end
    if pad:right() then
    screenrint(100,100,rightPressed,yellow)
    end
    if pad:l() then
    screenrint(100,100,LPressed,orange)
    end
    if pad:r() then
    screenrint(100,100,'You are pressing the "R" button',yellow)
    end
    if pad:triangle() then
    screenrint(100,100,'You are pressing the "TRIANGLE" button',green)
    end
    if pad:circle() then
    screenrint(100,100,'You are pressing the "CIRCLE" button',green)
    end
    if pad:cross() then
    screenrint(100,100,'You are pressing the "X" button',green)
    end
    if pad:square() then
    screenrint(100,100,'You are pressing the "SQUARE" button',green)
    end
    screen.waitVblankStart()
    screen.flip()
    end

Page 9 of 12 FirstFirst ... 56789101112 LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •