Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Other Discussions
  3. The Back Room
  4. nobody is listening to me

nobody is listening to me

Scheduled Pinned Locked Moved The Back Room
comgame-devhelpquestion
48 Posts 20 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • X XxChaosXslayerxX

    please can someone help me with my game? Go to www.BYOND.com and download the client, then on the BYOND website go to the DM reference to understand the code then help me make an RPG game plz i am begging everyone...i am desperate to make an RPG(Role Playing Game). I am 16 and just started programming, i like it but i suck at it, need help plz....:(( Slayer -- Moved to the soapbox at 16:02 Thursday 9th March, 2006 by Admin

    D Offline
    D Offline
    Douglas Troy
    wrote on last edited by
    #3

    You're far better off posting this on a gaming site. If you have specific programming questions, then post those on the appropriate message board. If you need links to gaming development sites, just search the lounge ... there was a recently asked question about OpenGL that had several URls.


    :..::. Douglas H. Troy ::..
    Bad Astronomy |Development Blogging|Viksoe.dk's Site

    X 1 Reply Last reply
    0
    • X XxChaosXslayerxX

      please can someone help me with my game? Go to www.BYOND.com and download the client, then on the BYOND website go to the DM reference to understand the code then help me make an RPG game plz i am begging everyone...i am desperate to make an RPG(Role Playing Game). I am 16 and just started programming, i like it but i suck at it, need help plz....:(( Slayer -- Moved to the soapbox at 16:02 Thursday 9th March, 2006 by Admin

      R Offline
      R Offline
      realJSOP
      wrote on last edited by
      #4

      Here's some help... http://www.paddedwall.org/help I'm excited that I've been able to help people like this twice today... It seems my work is never done. If you suck at programming, why don't you find something else to do with your time. I hear they're looking for more church-burning teenagers... ------- sig starts "I've heard some drivers saying, 'We're going too fast here...'. If you're not here to race, go the hell home - don't come here and grumble about going too fast. Why don't you tie a kerosene rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt "...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001 -- modified at 14:21 Thursday 9th March, 2006

      X 1 Reply Last reply
      0
      • D Douglas Troy

        You're far better off posting this on a gaming site. If you have specific programming questions, then post those on the appropriate message board. If you need links to gaming development sites, just search the lounge ... there was a recently asked question about OpenGL that had several URls.


        :..::. Douglas H. Troy ::..
        Bad Astronomy |Development Blogging|Viksoe.dk's Site

        X Offline
        X Offline
        XxChaosXslayerxX
        wrote on last edited by
        #5

        ok well I have tried other websites but no one gives me an answer can one of you that replied to me try BYOND? The code looks like this here is some of my half-made game.... mob icon = 'people.dmi' //make it so all mobs will be created with the person icon bug //new prototype icon = 'bug.dmi' //override the parent's icon, which was 'person.dmi' monsters icon = 'monsters.dmi' var HP = 30 //define a new variable called HP, with a value of 30 wealth Login() icon_state = gender //when a player logs in, get them the right icon state for ..() //the gender of their key. Then call the parent! proc DeathCheck() if (HP <= 0) world << "Guest killed [src]" del(src) //delete whatever just died verb attack(mob/M as mob in oview(1)) //attack a mob within 1 tile of you usr << "You attack [M]!" //send this message to the usr oview() << "[usr] attacks [M]!" //send this message to everybody else var/damage = rand(1,10) //assign a random # to a new variable world << "[damage] damage!" //tell the damage to the world M:HP -= damage //take away the damage from M M:DeathCheck() //check for death with a proc say(msg as text) //what the usr says is passed into "msg" as text world << "[usr]: [msg]" //the world sees chatroom-like output :(( TJ Slayer

        D R 2 Replies Last reply
        0
        • R realJSOP

          Here's some help... http://www.paddedwall.org/help I'm excited that I've been able to help people like this twice today... It seems my work is never done. If you suck at programming, why don't you find something else to do with your time. I hear they're looking for more church-burning teenagers... ------- sig starts "I've heard some drivers saying, 'We're going too fast here...'. If you're not here to race, go the hell home - don't come here and grumble about going too fast. Why don't you tie a kerosene rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt "...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001 -- modified at 14:21 Thursday 9th March, 2006

          X Offline
          X Offline
          XxChaosXslayerxX
          wrote on last edited by
          #6

          yea real flipping funny. alright wise ass, what i ment by "I suck at programming," was that i need help not to be criticized by 30 year old guys who sit in their moms basement and play D&D ok? I just want some simple help with my game, not much to ask.:mad: TJ Slayer

          D N J B R 6 Replies Last reply
          0
          • X XxChaosXslayerxX

            ok well I have tried other websites but no one gives me an answer can one of you that replied to me try BYOND? The code looks like this here is some of my half-made game.... mob icon = 'people.dmi' //make it so all mobs will be created with the person icon bug //new prototype icon = 'bug.dmi' //override the parent's icon, which was 'person.dmi' monsters icon = 'monsters.dmi' var HP = 30 //define a new variable called HP, with a value of 30 wealth Login() icon_state = gender //when a player logs in, get them the right icon state for ..() //the gender of their key. Then call the parent! proc DeathCheck() if (HP <= 0) world << "Guest killed [src]" del(src) //delete whatever just died verb attack(mob/M as mob in oview(1)) //attack a mob within 1 tile of you usr << "You attack [M]!" //send this message to the usr oview() << "[usr] attacks [M]!" //send this message to everybody else var/damage = rand(1,10) //assign a random # to a new variable world << "[damage] damage!" //tell the damage to the world M:HP -= damage //take away the damage from M M:DeathCheck() //check for death with a proc say(msg as text) //what the usr says is passed into "msg" as text world << "[usr]: [msg]" //the world sees chatroom-like output :(( TJ Slayer

            D Offline
            D Offline
            Douglas Troy
            wrote on last edited by
            #7

            Emmmm ... I see several problems. You should probably consider using the Plain English Compiler[^] as discussed here recently. As for your "code snippet" ... again, programming questions are not allowed in the lounge.


            :..::. Douglas H. Troy ::..
            Bad Astronomy |Development Blogging|Viksoe.dk's Site

            R 1 Reply Last reply
            0
            • X XxChaosXslayerxX

              yea real flipping funny. alright wise ass, what i ment by "I suck at programming," was that i need help not to be criticized by 30 year old guys who sit in their moms basement and play D&D ok? I just want some simple help with my game, not much to ask.:mad: TJ Slayer

              D Offline
              D Offline
              David Stone
              wrote on last edited by
              #8

              XxChaosXslayerxX wrote:

              I just want some simple help with my game

              And this is most certainly not the way to get it.

              They dress you up in white satin, And give you your very own pair of wings In August and Everything After

              I'm after everything

              1 Reply Last reply
              0
              • X XxChaosXslayerxX

                please can someone help me with my game? Go to www.BYOND.com and download the client, then on the BYOND website go to the DM reference to understand the code then help me make an RPG game plz i am begging everyone...i am desperate to make an RPG(Role Playing Game). I am 16 and just started programming, i like it but i suck at it, need help plz....:(( Slayer -- Moved to the soapbox at 16:02 Thursday 9th March, 2006 by Admin

                D Offline
                D Offline
                David Stone
                wrote on last edited by
                #9

                RPGs are huge. My advice would be to start with something smaller until you really know how to program. Then you can endeavor to take on a large project like an RPG.

                They dress you up in white satin, And give you your very own pair of wings In August and Everything After

                I'm after everything

                X 1 Reply Last reply
                0
                • D David Stone

                  RPGs are huge. My advice would be to start with something smaller until you really know how to program. Then you can endeavor to take on a large project like an RPG.

                  They dress you up in white satin, And give you your very own pair of wings In August and Everything After

                  I'm after everything

                  X Offline
                  X Offline
                  XxChaosXslayerxX
                  wrote on last edited by
                  #10

                  Well neither is this statement helping me\/ if you suck at programming, why don't you find something else to do with your time. I hear they're looking for more church-burning teenagers... no I know how to make an rpg i just need help with a few thiongs mainly an invotory thing, and being able to equip things to your guys Slayer

                  N D J 3 Replies Last reply
                  0
                  • X XxChaosXslayerxX

                    Well neither is this statement helping me\/ if you suck at programming, why don't you find something else to do with your time. I hear they're looking for more church-burning teenagers... no I know how to make an rpg i just need help with a few thiongs mainly an invotory thing, and being able to equip things to your guys Slayer

                    N Offline
                    N Offline
                    Nish Nishant
                    wrote on last edited by
                    #11

                    XxChaosXslayerxX wrote:

                    if you suck at programming, why don't you find something else to do with your time. I hear they're looking for more church-burning teenagers...

                    David didn't say anything like that to you, did he? :confused: Regards, Nish


                    Nish’s thoughts on MFC, C++/CLI and .NET (my blog)
                    The Ultimate Grid - The #1 MFC grid out there!

                    D 1 Reply Last reply
                    0
                    • X XxChaosXslayerxX

                      yea real flipping funny. alright wise ass, what i ment by "I suck at programming," was that i need help not to be criticized by 30 year old guys who sit in their moms basement and play D&D ok? I just want some simple help with my game, not much to ask.:mad: TJ Slayer

                      N Offline
                      N Offline
                      Nish Nishant
                      wrote on last edited by
                      #12

                      XxChaosXslayerxX wrote:

                      not to be criticized by 30 year old guys who sit in their moms basement

                      John's way more than 30 :-) Regards, Nish


                      Nish’s thoughts on MFC, C++/CLI and .NET (my blog)
                      The Ultimate Grid - The #1 MFC grid out there!

                      J 1 Reply Last reply
                      0
                      • X XxChaosXslayerxX

                        please can someone help me with my game? Go to www.BYOND.com and download the client, then on the BYOND website go to the DM reference to understand the code then help me make an RPG game plz i am begging everyone...i am desperate to make an RPG(Role Playing Game). I am 16 and just started programming, i like it but i suck at it, need help plz....:(( Slayer -- Moved to the soapbox at 16:02 Thursday 9th March, 2006 by Admin

                        S Offline
                        S Offline
                        Shog9 0
                        wrote on last edited by
                        #13

                        XxChaosXslayerxX wrote:

                        i am desperate to make an RPG(Role Playing Game).

                        Start here...

                        Now taking suggestions for the next release of CPhog...

                        1 Reply Last reply
                        0
                        • X XxChaosXslayerxX

                          please can someone help me with my game? Go to www.BYOND.com and download the client, then on the BYOND website go to the DM reference to understand the code then help me make an RPG game plz i am begging everyone...i am desperate to make an RPG(Role Playing Game). I am 16 and just started programming, i like it but i suck at it, need help plz....:(( Slayer -- Moved to the soapbox at 16:02 Thursday 9th March, 2006 by Admin

                          D Offline
                          D Offline
                          Dan Neely
                          wrote on last edited by
                          #14

                          Noone's going to learn a custom api/programming language just to help you with a question without being paid. As others have suggested if you need help, you're going to have to find a forum devoted to it's use.

                          1 Reply Last reply
                          0
                          • N Nish Nishant

                            XxChaosXslayerxX wrote:

                            if you suck at programming, why don't you find something else to do with your time. I hear they're looking for more church-burning teenagers...

                            David didn't say anything like that to you, did he? :confused: Regards, Nish


                            Nish’s thoughts on MFC, C++/CLI and .NET (my blog)
                            The Ultimate Grid - The #1 MFC grid out there!

                            D Offline
                            D Offline
                            David Stone
                            wrote on last edited by
                            #15

                            John did. :)

                            They dress you up in white satin, And give you your very own pair of wings In August and Everything After

                            I'm after everything

                            N 1 Reply Last reply
                            0
                            • X XxChaosXslayerxX

                              please can someone help me with my game? Go to www.BYOND.com and download the client, then on the BYOND website go to the DM reference to understand the code then help me make an RPG game plz i am begging everyone...i am desperate to make an RPG(Role Playing Game). I am 16 and just started programming, i like it but i suck at it, need help plz....:(( Slayer -- Moved to the soapbox at 16:02 Thursday 9th March, 2006 by Admin

                              E Offline
                              E Offline
                              Ed Poore
                              wrote on last edited by
                              #16

                              http://developer.byond.com/forum/ :doh: Didn't you think of that, maybe they know more about this byond stuff than we do, when you want to learn a more common & powerful language then come here. Ed

                              X 2 Replies Last reply
                              0
                              • X XxChaosXslayerxX

                                yea real flipping funny. alright wise ass, what i ment by "I suck at programming," was that i need help not to be criticized by 30 year old guys who sit in their moms basement and play D&D ok? I just want some simple help with my game, not much to ask.:mad: TJ Slayer

                                J Offline
                                J Offline
                                Jorgen Sigvardsson
                                wrote on last edited by
                                #17

                                Watch it.. John may roll a bad ass 30d30 on your ass...

                                1 Reply Last reply
                                0
                                • D David Stone

                                  John did. :)

                                  They dress you up in white satin, And give you your very own pair of wings In August and Everything After

                                  I'm after everything

                                  N Offline
                                  N Offline
                                  Nish Nishant
                                  wrote on last edited by
                                  #18

                                  David Stone wrote:

                                  John did.

                                  Ah okay. You guys gotta stop impersonating each other then, else people will mix you guys up :rolleyes: Regards, Nish


                                  Nish’s thoughts on MFC, C++/CLI and .NET (my blog)
                                  The Ultimate Grid - The #1 MFC grid out there!

                                  1 Reply Last reply
                                  0
                                  • X XxChaosXslayerxX

                                    Well neither is this statement helping me\/ if you suck at programming, why don't you find something else to do with your time. I hear they're looking for more church-burning teenagers... no I know how to make an rpg i just need help with a few thiongs mainly an invotory thing, and being able to equip things to your guys Slayer

                                    D Offline
                                    D Offline
                                    Douglas Troy
                                    wrote on last edited by
                                    #19

                                    You are using a proprietary scripting engine (BYOND) to do your 'game development' not a standardized programming language (e.g. C#, C++). You should be asking your question(s) on the website for your scripting engine, not here. Here's a link to a Microsoft page that might contain some information that's probably a heck of a lot more useful than your script kiddie engine; plus it will direct you down a path more geared towards real programming languages. Coding 4 Fun[^]


                                    :..::. Douglas H. Troy ::..
                                    Bad Astronomy |Development Blogging|Viksoe.dk's Site

                                    1 Reply Last reply
                                    0
                                    • N Nish Nishant

                                      XxChaosXslayerxX wrote:

                                      not to be criticized by 30 year old guys who sit in their moms basement

                                      John's way more than 30 :-) Regards, Nish


                                      Nish’s thoughts on MFC, C++/CLI and .NET (my blog)
                                      The Ultimate Grid - The #1 MFC grid out there!

                                      J Offline
                                      J Offline
                                      Judah Gabriel Himango
                                      wrote on last edited by
                                      #20

                                      And he's not a wise ass! Oh wait... ;)

                                      Tech, life, family, faith: Give me a visit. I'm currently blogging about: Lent Revisited The apostle Paul, modernly speaking: Epistles of Paul Judah Himango

                                      1 Reply Last reply
                                      0
                                      • X XxChaosXslayerxX

                                        Well neither is this statement helping me\/ if you suck at programming, why don't you find something else to do with your time. I hear they're looking for more church-burning teenagers... no I know how to make an rpg i just need help with a few thiongs mainly an invotory thing, and being able to equip things to your guys Slayer

                                        J Offline
                                        J Offline
                                        Jorgen Sigvardsson
                                        wrote on last edited by
                                        #21

                                        You need to calm down and stop acting like a spoiled brat. It's about giving and taking. You just don't start demanding help from other people. Learn how to program first, then how to apply your knowledge to solve tricky problems such as RGPs. That's what the rest of us did, why can't you?

                                        1 Reply Last reply
                                        0
                                        • E Ed Poore

                                          http://developer.byond.com/forum/ :doh: Didn't you think of that, maybe they know more about this byond stuff than we do, when you want to learn a more common & powerful language then come here. Ed

                                          X Offline
                                          X Offline
                                          XxChaosXslayerxX
                                          wrote on last edited by
                                          #22

                                          yea cuz u guys aren't mean. I am not being a spoiled brat ok? I just wanted to know if someone could help me with my prob, no need to be jackass's ok? Dam....i just wanted help and i didn't ask you to learn it, u prolly already know it u just don't use it. and i thought maybe u have used it before since u are really good at c++. and BYOND is not a kiddie program, it's a game maker, u can make games with c++, it's just harder. c++=game programming BYOND=game maker theres a difference. I was just asking for you to go to the BYOND website and look at the DM guide to see what i am doing the n help me from there. X| Slayer

                                          E D R 3 Replies Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups