nobody is listening to me
-
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 AdminYou'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 -
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 AdminHere'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
-
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 Siteok 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 -
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
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
-
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 SlayerEmmmm ... 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 -
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
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
-
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 AdminRPGs 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
-
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
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
-
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
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! -
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
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! -
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 -
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 -
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!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
-
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 Adminhttp://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
-
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
Watch it.. John may roll a bad ass 30d30 on your ass...
-
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
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! -
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
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 -
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!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
-
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
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?
-
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
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