2 registered members (OptimusPrime, AndrewAMD),
14,580
guests, and 5
spiders. |
Key:
Admin,
Global Mod,
Mod
|
|
|
Re: request : teach me , how to create ...
[Re: ratchet]
#375434
06/25/11 17:32
06/25/11 17:32
|
Malice
Unregistered
|
Malice
Unregistered
|
I can Help you with this project. But It would have to be for pay. Sorry Need the money.
Malice
|
|
|
Re: request : teach me , how to create ...
[Re: ]
#375448
06/25/11 19:23
06/25/11 19:23
|
Joined: Aug 2010
Posts: 131 Iran
Mafia_IR
OP
Member
|
OP
Member
Joined: Aug 2010
Posts: 131
Iran
|
I can Help you with this project. But It would have to be for pay. Sorry Need the money. If you hold me upside down , maybe you can find a cents from me !  sorry but i can pay nothing . ---------- what do you mean from 'arrays' ? do you mean this : (for example) that i should define a matrix [3][3] and it can be my game plan : [picture 1][picture 2][picture 3] [picture 4][picture 5][picture 6] [picture 7][picture 8][picture 9] is that your minds ?
|
|
|
Re: request : teach me , how to create ...
[Re: Mafia_IR]
#375459
06/25/11 20:07
06/25/11 20:07
|
Joined: Jun 2006
Posts: 2,640 Earth
Germanunkol
Expert
|
Expert
Joined: Jun 2006
Posts: 2,640
Earth
|
I would start by going through the Tutorial: http://tutorial.3dgamestudio.net/This teaches a lot of basics, and even if you want to make a 2d game, lots of the things they explain there about 2d objects are also needed when you use/create/delete panels (which is the object that is used in 3dgs to draw images onto the screen). Buttons are explained in the tutorial as well, try working with those.
~"I never let school interfere with my education"~ -Mark Twain
|
|
|
Re: request : teach me , how to create ...
[Re: Germanunkol]
#375509
06/26/11 02:48
06/26/11 02:48
|
Joined: Aug 2010
Posts: 131 Iran
Mafia_IR
OP
Member
|
OP
Member
Joined: Aug 2010
Posts: 131
Iran
|
I would start by going through the Tutorial: http://tutorial.3dgamestudio.net/This teaches a lot of basics, and even if you want to make a 2d game, lots of the things they explain there about 2d objects are also needed when you use/create/delete panels (which is the object that is used in 3dgs to draw images onto the screen). Buttons are explained in the tutorial as well, try working with those. i read them before to number 22 . i think my English is bad and you can not understand this : what i don't know ?
the rule of this game is , if player can move the same pictures and put three or more of them in a line , game deleting those pictures and create other pics ...
but problems are here : how can i define that these three panels are in the line ?
once i was able to do and those three pics are deleted ... after that, all of panels there are in the top of these pics should come down and some new pics should be created in the top . How can i do that ? i didn't say hey guys i don't know how can i use pan_create PANEL* pos_x pos_y etc ... this is my problem : how can i define to engine ,that these three panels are in the line ? EDIT : how can i define to engine ,that these three panels (that have a same pictures) are in the line ?
Last edited by Mafia_IR; 06/26/11 02:53.
|
|
|
Re: request : teach me , how to create ...
[Re: Mafia_IR]
#375546
06/26/11 13:43
06/26/11 13:43
|
Joined: Sep 2003
Posts: 6,861 Kiel (Germany)
Superku
Senior Expert
|
Senior Expert
Joined: Sep 2003
Posts: 6,861
Kiel (Germany)
|
EDIT : how can i define to engine ,that these three panels (that have a same pictures) are in the line ? The game logic could/ should be done with arrays, the panels are only the visualization. You can, f.i., save the panel's grid position in its skill_a and skill_b, when you now pick up a panel and drag it somewhere else (I don't know if the game's rules allow that, but nevertheless), you calculate the index of your grid below the mouse cursor and change the value of the array at that position. The panels themself could be saved in a panel array and updated in a while loop, where you just set panel[i].bmap = my_icons[array[panel[i].skill_a][panel[i].skill_b]], where my_icons is a bmap array.
"Falls das Resultat nicht einfach nur dermassen gut aussieht, sollten Sie nochmal von vorn anfangen..." - Manual Check out my new game: Pogostuck: Rage With Your Friends
|
|
|
|