Gamestudio Links
Zorro Links
Newest Posts
Executing Trades on Next Bar Open
by vicknick. 06/13/24 08:51
Zorro Beta 2.61: PyTorch
by jcl. 06/10/24 14:42
New FXCM FIX Plugin
by flink. 06/04/24 07:30
AlpacaZorroPlugin v1.3.0 Released
by kzhao. 05/22/24 13:41
Free Live Data for Zorro with Paper Trading?
by AbrahamR. 05/18/24 13:28
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
0 registered members (), 1,251 guests, and 5 spiders.
Key: Admin, Global Mod, Mod
Newest Members
AemStones, LucasJoshua, Baklazhan, Hanky27, firatv
19059 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Page 1 of 2 1 2
Fist Fighting AI scripts.... #208842
05/29/08 22:54
05/29/08 22:54
Joined: Jan 2006
Posts: 2,157
Connecticut, USA
Blink Offline OP

Expert
Blink  Offline OP

Expert

Joined: Jan 2006
Posts: 2,157
Connecticut, USA
I had my hands on Ambits script for fist fighting ai, but it was too difficult converting it to A6 from A5. I looked around the AUM's, but they were all in A5, so no luck. Ambits code was cool because the enemy had string attacks, and could block, so it wasnt just button mashing. i got jumped by three enemies in the demo, who game me a game over really quick, lol. are there any fist fighting scripts out there? or any coders who would like to try their hand at converting the script to A6 for the community? if so, I will post the code.


My Famous Quotes: "Hip hop is like a virus, infecting everyone and everything around it. Every form of media has some way,shape or form, assimilated hip hop into it." It has also mutated into other strains like, trip hop, house, rap, gangster, and conscious forms. Once you are infected with it, its with you for life."
Re: Fist Fighting AI scripts.... [Re: Blink] #208932
05/30/08 18:26
05/30/08 18:26
Joined: May 2006
Posts: 90
England
TigerTao Offline
Junior Member
TigerTao  Offline
Junior Member

Joined: May 2006
Posts: 90
England
Im not a coder but I would like to see this code and, if possible, convert it to A6. So yes please post the code.

I should do the same for the Fite-C code but need to learn up more on Lite-C first.

Re: Fist Fighting AI scripts.... [Re: TigerTao] #209824
06/06/08 00:47
06/06/08 00:47
Joined: Jul 2006
Posts: 28
B
burning_devil Offline
Newbie
burning_devil  Offline
Newbie
B

Joined: Jul 2006
Posts: 28
Hi, I just finished making a pro wrestling video game and have mastered cscript coding from A5, A6 to A7. In my pro wrestling game, I have AI wrestlers, which is very simple to code, and I plan to release a tutorial for Wrestling games in 3d Gamestudio. If you want my help, please respond back. I started from scratch and make everything I create, simple to read as possible.

Re: Fist Fighting AI scripts.... [Re: burning_devil] #209826
06/06/08 00:56
06/06/08 00:56
Joined: Jan 2006
Posts: 2,157
Connecticut, USA
Blink Offline OP

Expert
Blink  Offline OP

Expert

Joined: Jan 2006
Posts: 2,157
Connecticut, USA
that would be great, i know us in the community would appreciate a "fist-fighting" ai code. the shooter code for 1st and 3rd are awesome in the templates, but customizing the template to have your enemy ai attack with fists and swords is frustrating and limits you to one attack only. i would like ai that can punch, kick, and block, that would seem more realistic. the code made by ambit is amazing, but because it is in A5, its very hard to convert to A6. another issue is, he never completed the tutorial, so its hard to tell if you have a complete code anyway. i didnt post the code because i just have an incomplete tutorial without complete code. i thought it was complete, but it shows pieces of script that you have to piece together yourself, and its frustrating,lol. if anyone wants the pdf. pm with your e-mail, i will send it to you.


My Famous Quotes: "Hip hop is like a virus, infecting everyone and everything around it. Every form of media has some way,shape or form, assimilated hip hop into it." It has also mutated into other strains like, trip hop, house, rap, gangster, and conscious forms. Once you are infected with it, its with you for life."
Re: Fist Fighting AI scripts.... [Re: Blink] #209831
06/06/08 04:21
06/06/08 04:21
Joined: Jul 2006
Posts: 28
B
burning_devil Offline
Newbie
burning_devil  Offline
Newbie
B

Joined: Jul 2006
Posts: 28
Here is an example, of a very easy to read, combat AI.

if(RANDOM_AI == 1)
{
if(ran == attack_punch) {MY.state = PUNCH_A;}
if(ran == attack_kick) {MY.state = KICK_A;}
if(ran == attack_highpunch) {MY.state = HIGHPUNCH_A;}
if(ran == attack_lowpunch) {MY.state = LOWPUNCH_A;}
if(ran == attack_lowkick) {MY.state = LOWKICK_A;}
if(ran == attack_irishwhip) {MY.state = IRISHWHIP_A;}
}


if(vec_dist (player.x, player2.x) <= 45)&&(player.state == STAND)&&(my.state == STAND)
{
RANDOM_AI = 1;
randomize();
ran = int(random(7));
}

Re: Fist Fighting AI scripts.... [Re: burning_devil] #209833
06/06/08 04:37
06/06/08 04:37
Joined: Jul 2006
Posts: 28
B
burning_devil Offline
Newbie
burning_devil  Offline
Newbie
B

Joined: Jul 2006
Posts: 28
I don't know if you haven't heard, but there was an updated Fighting Game Tutorial made by Keith Blount for A6 owners. He made 2 pdf's and included a fighter. He never completed the tutorial, but everything from kicks, punch, block, knockout, lockon feature, cameras, sounds, etc, were all in the tutorial. I learned alot from that tutorial, and know every bit of the code, right off my head. Here is the Tutorial if you want it.

http://rapidshare.com/files/120424790/A6_Fight_Game_Tutorial_by_Keith_Blount.zip

Re: Fist Fighting AI scripts.... [Re: burning_devil] #209871
06/06/08 11:00
06/06/08 11:00
Joined: Jan 2006
Posts: 2,157
Connecticut, USA
Blink Offline OP

Expert
Blink  Offline OP

Expert

Joined: Jan 2006
Posts: 2,157
Connecticut, USA
Thank you, this is the same one that i already have. i tried to use it a couple of years ago with no success. if you have a working wdl, can i use it? i guess because i am no coder, i really couldnt understand how to put it together. thanks again for your assistance. the community will benefit greatly from a completed code from such a coveted tutorial as ambit's fight tut. great work, burning_devil!


My Famous Quotes: "Hip hop is like a virus, infecting everyone and everything around it. Every form of media has some way,shape or form, assimilated hip hop into it." It has also mutated into other strains like, trip hop, house, rap, gangster, and conscious forms. Once you are infected with it, its with you for life."
Re: Fist Fighting AI scripts.... [Re: burning_devil] #209983
06/07/08 01:44
06/07/08 01:44
Joined: Nov 2005
Posts: 17
D
dominant Offline
Newbie
dominant  Offline
Newbie
D

Joined: Nov 2005
Posts: 17
Hey man I have been trying and trying to make a wrestling game and I guess I suck at coding if you could post that you'll get much respect from me.

Re: Fist Fighting AI scripts.... [Re: dominant] #210149
06/08/08 11:54
06/08/08 11:54
Joined: May 2006
Posts: 90
England
TigerTao Offline
Junior Member
TigerTao  Offline
Junior Member

Joined: May 2006
Posts: 90
England
Hey thanks to you burning devil. Definitely post up a tutorial when you can, I would really appreciate that and Im sure most of the community would as well.

Re: Fist Fighting AI scripts.... [Re: TigerTao] #210658
06/12/08 01:33
06/12/08 01:33
Joined: Jan 2006
Posts: 2,157
Connecticut, USA
Blink Offline OP

Expert
Blink  Offline OP

Expert

Joined: Jan 2006
Posts: 2,157
Connecticut, USA
@ burning_devil, are you going to post a code for us?


My Famous Quotes: "Hip hop is like a virus, infecting everyone and everything around it. Every form of media has some way,shape or form, assimilated hip hop into it." It has also mutated into other strains like, trip hop, house, rap, gangster, and conscious forms. Once you are infected with it, its with you for life."
Page 1 of 2 1 2

Moderated by  HeelX, Spirit 

Gamestudio download | chip programmers | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1