gametechmods

Robot Arena => Modifications => Topic started by: Tigermisu on October 30, 2009, 04:57:31 PM

Title: Can someone modify a file to make the hammer in the stock "Half circle arena" mortal?
Post by: Tigermisu on October 30, 2009, 04:57:31 PM
Can someone modify a file to make the hammer in the stock "Half circle arena" mortal?

I think is too big and does almost no damage, I been looking and playing with the files but i can't find the one that sets how damage a hazard inflicts.

I could use that someone make, or told me how to, the hammer stronger, maybe enought that it can KO a LW bot, and inflict serious damage to a HW.

Please?:-D
Title: Can someone modify a file to make the hammer in the stock "Half circle arena" mortal?
Post by: cephalopod on October 30, 2009, 05:07:45 PM
It's definately do-able, I've known people to do similar things, but I'm not sure what I'm editing.
Title: Can someone modify a file to make the hammer in the stock "Half circle arena" mortal?
Post by: Tigermisu on October 30, 2009, 05:47:01 PM
Thank you.

I'll wait for an expert on editing :-)
Title: Can someone modify a file to make the hammer in the stock "Half circle arena" mortal?
Post by: Trovaner on October 30, 2009, 07:43:38 PM
Be sure to make a backup first before modding...

To increase damage all you really need to do is change the .8 in this line to something higher...
Code: [Select]
self.SetSubMaterialSound("Hammer", "metal", .8, "Sounds\\hzd_hammer_thud.wav")
This function makes the specified sound play whenever the "Hammer" hits something, assigns the material to "metal" (only other choices are "rubber" and "arenium"), and how much damage it inflicts (I'm not sure what the relationship between this value and the actual damage is but it generally doesn't need a big, huge number to deal large amounts of damage).
Title: Can someone modify a file to make the hammer in the stock "Half circle arena" mortal?
Post by: Madiaba on October 30, 2009, 08:10:10 PM
^^yep^^ Thanks, Trov. (you deserve a raise)...
Watch out though, cause Spyguy will nail you for long answers... (though I like them).
 
My input:
Just remove the decimal:
Code: [Select]
self.SetSubMaterialSound("Hammer", "metal", [COLOR=red].8[/COLOR], "Sounds\\hzd_hammer_thud.wav")
self.SetSubMaterialSound("Hammer", "metal",  [COLOR=red]8[/COLOR], "Sounds\\hzd_hammer_thud.wav")

Bwahahahaha!!!!!
Title: Can someone modify a file to make the hammer in the stock "Half circle arena" mortal?
Post by: Tigermisu on October 30, 2009, 09:35:39 PM
Wow u guys so smart!!

But you forgot one thing...

In what file is that command?
Title: Can someone modify a file to make the hammer in the stock "Half circle arena" mortal?
Post by: Madiaba on October 30, 2009, 09:37:48 PM
"half" python file.
Title: Can someone modify a file to make the hammer in the stock "Half circle arena" mortal?
Post by: Tigermisu on October 30, 2009, 09:40:41 PM
Wait i got it.

Half.py

Uhm nice!!!!!!!1 it works!!

I wonder, what other hazards are underpowered.......
Title: Can someone modify a file to make the hammer in the stock "Half circle arena" mortal?
Post by: JoeBlo on October 30, 2009, 11:23:27 PM
8 ?? mad your way to kind try 500 :evil:

that is if you want bots to die is 2 hits haha
Title: Can someone modify a file to make the hammer in the stock "Half circle arena" mortal?
Post by: DuckRA2 on October 30, 2009, 11:37:41 PM
I like over powered spikes

http://www.youtube.com/watch?v=qPGX3m7IIwI
:roll:
Title: Can someone modify a file to make the hammer in the stock "Half circle arena" mortal?
Post by: JoeBlo on October 30, 2009, 11:50:15 PM
yeah :P

or like the Dreadzone arena I made out of the Octagon
Title: Can someone modify a file to make the hammer in the stock "Half circle arena" mortal?
Post by: Madiaba on October 30, 2009, 11:57:56 PM
-500? :Confused:
 
-Nice spikes, Duck.
 
-You guys (Joe/Duck/Wham/...) need to keep up your gmf and py work until you can understand and do just about anything....:biggrin:
Title: Can someone modify a file to make the hammer in the stock "Half circle arena" mortal?
Post by: JoeBlo on October 31, 2009, 12:15:54 AM
makes the hazards more hazardous :P

I made the Crushers of the Compressor arena kill in about 2-3 hits because I figured that was a little more realistic
Title: Can someone modify a file to make the hammer in the stock "Half circle arena" mortal?
Post by: Somebody on October 31, 2009, 08:09:49 AM
On the subject of crappy hazards:
I've always wondered since I got RA2: What do those buttons in the corners of the Electric Arena do?
They have the sz thingies and it shows them in the intro, but I've tried for a while and can't get them to seem to do anything.
Title: Can someone modify a file to make the hammer in the stock "Half circle arena" mortal?
Post by: Pwnator on October 31, 2009, 08:17:46 AM
Since the game is unfinished, those SZs are probably for activating the lightning hazard whether bots are in there or not.
Title: Can someone modify a file to make the hammer in the stock "Half circle arena" mortal?
Post by: Resetti's Replicas on October 31, 2009, 09:56:11 AM
Quote from: Somebody;75943
On the subject of crappy hazards:
I've always wondered since I got RA2: What do those buttons in the corners of the Electric Arena do?
They have the sz thingies and it shows them in the intro, but I've tried for a while and can't get them to seem to do anything.


I think, don't quote me on this, but I heard they only work if there are more than 2 bots in the arena.
Title: Can someone modify a file to make the hammer in the stock "Half circle arena" mortal?
Post by: Tigermisu on October 31, 2009, 01:55:30 PM
Amazing...

How could I make the flamethrowers in the DSL Robot wars arena/claw top arena more dangerous? They take ages to burn down a bot.....

Edit: yeah i wonder why those buttons are for.
Title: Can someone modify a file to make the hammer in the stock "Half circle arena" mortal?
Post by: RedSawn on October 31, 2009, 01:58:23 PM
Quote from: Tigermisu;76052
Amazing...

How could I make the flamethrowers in the DSL Robot wars arena/claw top arena more dangerous? They take ages to burn down a bot.....


Hazards.py in the Arenas folder. These are the python files for the hazards ofcourse.
Code: [Select]
plus.damage(compinfo[0], compinfo[1], 40, (compinfo[2], compinfo[3], compinfo
Find Flame and look for that.

Electricity is also in there.
Title: Can someone modify a file to make the hammer in the stock "Half circle arena" mortal?
Post by: cephalopod on October 31, 2009, 02:29:54 PM
I've just had an idea. I was just editing flames like you guys spoke about, and I know people once discussed a Sumo arena, well could you put flame jets in a circle, make the robots start in the circle, then make the flame damage so high that it's an instant KO?

Is this anything like a good idea? Anyhow... wrong thread, I know.
Title: Can someone modify a file to make the hammer in the stock "Half circle arena" mortal?
Post by: Madiaba on October 31, 2009, 03:28:28 PM
Red: Thanks for helping out.
 
Craig, Tiger: Here are a couple example tweeks using the flames (location, movement, potency)and a couple other Hazards:
P_3 (http://www.madiaba.gametechmods.com/VIDS/P_3.wmv)
 
P_4 (http://www.madiaba.gametechmods.com/VIDS/P_4.wmv)
 
P_5 (http://www.madiaba.gametechmods.com/VIDS/P_5.wmv)
 
M-1final (http://www.madiaba.gametechmods.com/VIDS/M-1final.wmv)
Title: Can someone modify a file to make the hammer in the stock "Half circle arena" mortal?
Post by: Tigermisu on November 01, 2009, 12:12:51 AM
P_$??? dumb things down pl0x!

:S
Title: Can someone modify a file to make the hammer in the stock "Half circle arena" mortal?
Post by: Madiaba on November 01, 2009, 07:21:02 PM
Quote from: Somebody;75943
On the subject of crappy hazards:
I've always wondered since I got RA2: What do those buttons in the corners of the Electric Arena do?
They have the sz thingies and it shows them in the intro, but I've tried for a while and can't get them to seem to do anything.
The coding is in the py and the SZs in the gmf:
(https://gametechmods.com/uploads/images/87277Electric_Button_SZ.jpg)
 
It looks like at one time the buttons were optional ways to turn on the electric grid.
 
 
 
Tiger: These (links above) are just a few examples. If you're interested in one, then let me know and I'll help you out, when I can.
 
.
Title: Can someone modify a file to make the hammer in the stock "Half circle arena" mortal?
Post by: Sage on November 01, 2009, 07:40:55 PM
Is that HoHoHammers I spy? :D

I wonder if you could get those buttons to work again?
Title: Can someone modify a file to make the hammer in the stock "Half circle arena" mortal?
Post by: Tigermisu on November 02, 2009, 12:00:51 AM
Quote from: Sage;76413

I wonder if you could get those buttons to work again?


That =)


And im insterested in that tank-bot.

What does it shot? :D

Anyways, the fire effect seems cool, but a little to advanced for my lvl.