Author Topic: I need some help With the bot exchange.  (Read 12489 times)

Offline goose

  • *
  • Posts: 10015
  • Rep: 1
    • View Profile
    • Awards
I need some help With the bot exchange.
« on: October 30, 2009, 03:37:03 AM »
A list of custom components
 
What I need is:
1. the component txt file; found in either the components folder or the components cfz file. NOT the gmf.
2. the weight of that component, which in most cases can be found in the component txt file, or in the game.
3 The name of the component.
4. the link to the download zip of the component/pack
 
in this format:
component name, componenttextfile.txt, weight, download link
 
if its a single component please list them like this:
Mini CO2 Airtank, a5099air.txt, 55*, https://gametechmods.com/Robot_Arena2...o2_airtank.zip
Blue Bird, bluebird1.txt, 66*, https://gametechmods.com/Robot_Arena2.../blue_bird.zip
 
If its a pack like this:
Dark Pack 1 (https://gametechmods.com/Robot_Arena2...pack_v1.0.exe-)
component name, componenttextfile.txt, weight
component name 2, componenttextfile2.txt, weight
 
What I need this for:
I will make is so when uploading bots to the exchange you will not to do anything but give the bot file. The script will calculate the bot weight and extract the bot preview image automagicly. It will also provide a list of required downloads on the download page.
 
 
people who help will be given the following:
-early access to the bot exchange
-name put on the credits page
-I will have your babies?
 
people who don't:
will have ads on the exchange, maybe.
 
 
 
List of Done components/packs:
1.Stock.(thanks acams)
2. Darkpack v3(thanks Craaig)
3. DSL (thanks acams)
4. Firebeetles Component Pack( thanks JoeBlo)
5. Alphaisim Part Set(thanks trumpetguy)
6.Lu-Tze's Component Pack v1.9(thanks H@zm47)


Complete Example:
Lu-Tze's Component Pack v1.9 (https://gametechmods.com/Robot_Ar...ponents1.9.exe)
Beltdrive Motor, lt_beltdrive1.txt, 30
Balance Caster, lt_caster1.txt, 6
Chainsaw, lt_chainsaw.txt, 8
Large Crossbow, lt_crossbow.txt, 65
Windoze Desktop Cannon, lt_desktop.txt, 30
Lightweight Mauling Disc, lt_disk.txt, 15
Spinner Drum, lt_drum.txt, 10
Double Axle Motor, lt_dxmotor.txt, 40
Micro Flamer, lt_flamer.txt, 36
Flame Poker Spike, lt_fspike.txt, 14
Hazard Blade, lt_hazardblade.txt, 18
Hex Plate, lt_hex1.txt, 5
Metal Hinge, lt_hinge.txt, 12
Carbon Kevlar Sheet, lt_kevplate.txt, 15
Bloody Great Lance, lt_lance.txt, 35
Light Sabre, lt_litesabre.txt, 6
Micro Cannon, lt_mcan.txt, 35
Cold Fusion Reactor, lt_reactor.txt, 100
Cold Fusion Reactor Exhaust Catcher, lt_reactorex.txt, 100
Tank Tracks, lt_tanktrak.txt, 20
Tuff Weapon Motor, lt_tuffmotor.txt, 20
Microshot Windoze PC, lt_winpc.txt, 8
 
You can use THIS UPLOADER for your text files
 
notice: this post has been updated for clarity.
« Last Edit: November 13, 2009, 07:13:02 PM by goose »
sippin' on my Honeydew bubble tea.
party in my tummy. yummy, yummy.

Offline Trovaner

  • *
  • Posts: 1222
  • Rep: 32
    • View Profile
    • Awards
I need some help With the bot exchange.
« Reply #1 on: October 30, 2009, 08:16:12 PM »
I have a feeling I know what it is for... (and possibly why ACAMS had a similar question)

Anyways, a couple quick questions:
1. What do you want done when multiple packs include the same components (such as DSL-Components&AI and DSL-Components or between versions)
2. What custom components are you wanting? (GTM Downloads Section, RFSHQ Downloads Section, Member Signatures, Member Sites (such as Giga's site))
3. Who plans on helping? (my time is more limited than before so I can't be counted on for everything (although, I will volunteer some help))

Anyone wanting to help (but not wanting to make a list) can use the info that I gave in ACAMS thread to make a list in Goose's format.

Offline goose

  • *
  • Posts: 10015
  • Rep: 1
    • View Profile
    • Awards
I need some help With the bot exchange.
« Reply #2 on: October 31, 2009, 07:29:00 PM »
Thanks Trov.

as for everyone else:tongue:
sippin' on my Honeydew bubble tea.
party in my tummy. yummy, yummy.

Offline Trovaner

  • *
  • Posts: 1222
  • Rep: 32
    • View Profile
    • Awards
I need some help With the bot exchange.
« Reply #3 on: November 04, 2009, 12:17:41 AM »
Thanks for the appreciation.

Anyways, here is another Batch file that will make doing this a lot easier:
(Copy this into a file named "TextFilePrinter2.bat")
Code: [Select]
::Author - Trovaner
::Description - Makes a list of RA2 component names, files, and weights
::What To Do -
::  1. Put this in the same folder as the RA2 component text files
::  2. Double click this batch file
::  3. Copy and paste (or save) the results somewhere else
::  4. Complete the formatting listed here: https://gametechmods.com/forums/showthread.php?t=2714
::  5. Reply to the above thread with your results

for %%a in (*.txt) do (set file= %%a & call :Create "%%a")
goto Complete

:Create
for /F "tokens=*" %%b in (%file%) do set %%b
echo %name :~1%,%file:~0,-1%,%mass % >> TextFileList.tmp
goto :EOF

:Complete
::Pause
START /w NOTEPAD.EXE TextFileList.tmp
del TextFileList.tmp
Now all you really need to do is write the name of the pack and where to download it (following the format Goose gave in his first post). It now automatically opens the file where it stored the list, deletes automatically after closing out of notepad, looks inside of the text files for the desired information, formats things better, and got quite a bit more complicated.

@Goose: Whenever you have time, could you answer the questions in my previous post.

@Everyone Else: Please post if you want to help out. Before doing anything, please post whatever you plan on doing so that no one else does it. I'm still very busy so I'm not going to request any sections yet but I might do something later... (but like I'm trying to get you guys to do, I'll post what it is before starting)

Offline goose

  • *
  • Posts: 10015
  • Rep: 1
    • View Profile
    • Awards
I need some help With the bot exchange.
« Reply #4 on: November 05, 2009, 04:01:59 AM »
1.Just do the latest version of the pack.  

2.Do any pack you can find, I want a comprehensive  list of ALL parts, if possible.


nice batch file. ;)


I guess Trov is the only one that wants access to the bot exchange...
sippin' on my Honeydew bubble tea.
party in my tummy. yummy, yummy.

Offline ashman12

  • Super Heavyweight
  • Posts: 876
  • Rep: 0
  • Insanity is my only means of relaxation...
    • http://www.facebook.com/h
    • http://www.youtube.com/us
    • View Profile
    • Awards
  • See profile for gamer tags: Yes
I need some help With the bot exchange.
« Reply #5 on: November 05, 2009, 10:27:01 AM »
i would help but i have no idea what to do.

are you just wanting a list if the names of the components like for example the d1 components pack.

the first is d1_blade so.

blade.gmf

next is d1_bumper so.

bumper1.gmf
bumper2.gmf.

if that is what you mean i could help most of the time as i never have anything to do so i could do that.
if not then i dont know if i could help.

Offline nicsan2009

  • Ultra Heavyweight
  • Posts: 1836
  • Rep: 5
  • Here we go again!
    • View Profile
    • Awards
  • See profile for gamer tags: Yes
« Last Edit: November 10, 2009, 08:49:10 PM by nicsan2009 »
Hosted 2 Legit 2 Quit tourney Congrats Somebody
Hosted 2 Legit 2 Quit 2 congrats to Plazmic Inferno as well as Somebody (again)
Hosted RA2 World Cup Congrats to Senstro
Hosted TGRR congrats to 090901
ITAT Tournament- Champion
Beetle Bashers- Champion
Father and Son Tournament 2- Champion
GTM All Stars- HW Champion; MW runner up
Father and Son Tournament- Runner up
All Time Record 51-36

Offline Somebody

  • *
  • Posts: 7201
  • Rep: 13
  • CP: +2
    • View Profile
    • Awards
I need some help With the bot exchange.
« Reply #7 on: November 06, 2009, 04:05:08 PM »
What packs do you want to have. I'll see if I can scrounge some time this weekend.
I built that big robot on that TV show that time


Offline ashman12

  • Super Heavyweight
  • Posts: 876
  • Rep: 0
  • Insanity is my only means of relaxation...
    • http://www.facebook.com/h
    • http://www.youtube.com/us
    • View Profile
    • Awards
  • See profile for gamer tags: Yes
I need some help With the bot exchange.
« Reply #8 on: November 06, 2009, 05:32:29 PM »
is it the gmf files in a zip.
if so ill give you alot if you want.

Offline goose

  • *
  • Posts: 10015
  • Rep: 1
    • View Profile
    • Awards
I need some help With the bot exchange.
« Reply #9 on: November 09, 2009, 02:06:42 AM »
odd, I could have swore I posted a response, guess it did not go through...

What I need is:
1. the component txt file; found in either the components folder or the components cfz file. NOT the gmf.
2. the weight of that component, which in most cases can be found in the component txt file, or in the game.
3 The name of the component.
4. the link to the download zip of the component/pack

if its a single component please list them like this:
Mini CO2 Airtank, a5099air.txt, 55*, https://gametechmods.com/Robot_Arena2...o2_airtank.zip
Blue Bird, bluebird1.txt, 66*, https://gametechmods.com/Robot_Arena2.../blue_bird.zip

If its a pack like this:
Dark Pack 1 (https://gametechmods.com/Robot_Arena2...pack_v1.0.exe-)
component name, componenttextfile.txt, weight
component name 2, componenttextfile2.txt, weight


What I need this for:
I will make is so when uploading bots to the exchange you will not to do anything but give the bot file.  The script will calculate the bot weight and extract the bot preview image automagicly. It will also provide a list of required downloads on the download page.


people who help will be given the following:
-early access to the bot exchange
-name put on the credits page
-I will have your babies?

people who don't:
will have ads on the exchange, maybe.
sippin' on my Honeydew bubble tea.
party in my tummy. yummy, yummy.

Offline JoeBlo

I need some help With the bot exchange.
« Reply #10 on: November 09, 2009, 04:26:59 AM »
I will provide you with all the Backlash Components once I finish balancing all the values (which will be a little longer away)

I can do all the CC2 prize components if you like

Offline Naryar

  • Posts: 23267
  • Rep: 20
  • hybrids oui oui
    • http://www.youtube.com/us
  • Awards BOTM Winner
    • View Profile
    • Awards
  • Skype: TheMightyNaryar
I need some help With the bot exchange.
« Reply #11 on: November 09, 2009, 07:33:05 AM »
This is going to take forever if we get all the existing components...

Why don't you make the bot exchange just for stock and DSL for now ?

Offline Madiaba

I need some help With the bot exchange.
« Reply #12 on: November 09, 2009, 07:33:29 AM »
Quote from: goose who dun did write;78008
.....
What I need this for:
I will make is so when uploading bots to the exchange you will not to do anything but give the bot file. The script will calculate the bot weight and extract the bot preview image automagicly.(Wow, nice.)  It will also provide a list of required downloads on the download page. (Wow x5, very nice.)
 
 
people who help will be given the following:
-early access to the bot exchange
-name put on the credits page
-I will have your babies? (No, thanks, I'm done with babies, I'm a Mod on a couple forums)
 
people who don't:
will have a(i)ds on the exchange, maybe. (:eek:-->So we better help out!)
....
Input is appreciated. :)
-Arrogance is a quantity devoid of quality...
-As a client once told me "This is my story, and it's sticking to me!"
-Relationships these days are like the 'Arrival' section of the airport: a lot of baggage is being revealed in one place, and not a lot of it is being correlated to its real owners...

Offline JoeBlo

I need some help With the bot exchange.
« Reply #13 on: November 09, 2009, 07:34:56 AM »
im spending my 3000th post on this, thats the extent of my dedication :P

what has already been done ? I can knock off some quickly as I have a game with just about everything on it as far as component packs go

Offline goose

  • *
  • Posts: 10015
  • Rep: 1
    • View Profile
    • Awards
I need some help With the bot exchange.
« Reply #14 on: November 09, 2009, 09:30:41 AM »
Quote from: Naryar;78020
This is going to take forever if we get all the existing components...

Why don't you make the bot exchange just for stock and DSL for now ?


Stock is the only thing done(thanks ACAMS), Someone do DSL 2.0
sippin' on my Honeydew bubble tea.
party in my tummy. yummy, yummy.

Offline ashman12

  • Super Heavyweight
  • Posts: 876
  • Rep: 0
  • Insanity is my only means of relaxation...
    • http://www.facebook.com/h
    • http://www.youtube.com/us
    • View Profile
    • Awards
  • See profile for gamer tags: Yes
I need some help With the bot exchange.
« Reply #15 on: November 09, 2009, 09:56:35 AM »
im never really up to something so ill be able to give a lot of stuff.

i might wait to do the weight of the robot as it would mean that i would have to install them all because i only have clean copies the now because my game kept messing up.

ill update post soon after digging out the files from hard drive and all the places they are hiding in.

Offline cephalopod

I need some help With the bot exchange.
« Reply #16 on: November 09, 2009, 10:23:46 AM »
Just did darkpack v3, hope its okay.
bristol bot builders / two headed death flamingo / snappy robots
//
kindest and friendliest '13, '15, '16, '17 / favourite staff member '14, '15

Offline ACAMS

I need some help With the bot exchange.
« Reply #17 on: November 09, 2009, 11:06:47 AM »
I will do DSL.....have it to you today.

Offline ashman12

  • Super Heavyweight
  • Posts: 876
  • Rep: 0
  • Insanity is my only means of relaxation...
    • http://www.facebook.com/h
    • http://www.youtube.com/us
    • View Profile
    • Awards
  • See profile for gamer tags: Yes
I need some help With the bot exchange.
« Reply #18 on: November 09, 2009, 11:25:35 AM »
Single packs

1467DYMO_Wheel_1
dymowheel1.txt

a5099s_soundchip
a5099sc.txt
sounds : taunt1,taunt2,taunt3,taunt4

b4btire
mudtire.txt

ballasthammer
ballasthammer1.txt

bluebird
bluebird1.txt

cherrypoint(CFL_s_spike)
cherrypoint.txt

stamper(CFLv_stamper)
stamper.txt

t_soundchip(CFLv_tchip)
t_soundchip.txt

CTC_bullhorn
bullhorn.txt

CTC_graptor
graptor.txt

CTC_long_battery
longbattery.txt

CTC_ntooth
ntooth.txt
ntooth0.txt

custom_zone
zonezone1.txt
zonezone2.txt
zonezone3.txt

Devils_Elbow_AntiBallast
DE_anti-Ballast.txt

DR_steelball
barrels.txt
steelball.txt

DV_Snow_burst
snow.txt

DV_SnowBurst_Plow
snow.txt

GSE_bigbrotherflipper
bigbrotherflipper.txt
bigbrotherflipper_txt.txt

GSE_psycohammer
psycohammer.txt

GSE_smallsheet
smallsheet.txt

GSE-hazardstyle_motor
hazardmotor1.txt
hazardmotor2.txt
hazardmotor3.txt
hazardmotor4.txt
hazardmotor6.txt
hazardmotor8.txt
hazardmotor42.txt

GSE_rotovator2
rotovator.txt
rotovator_txt.txt

GSE_universalX
universalX.txt

HX_custom_zone
zonezone1.txt
zonezone2.txt
zonezone3.txt

HX_hackerdisc2_4
hacker_disc1.txt
hacker_disc2.txt
hacker_disc3.txt
hacker_disc4.txt
sounds : hackerdisc_attach
            hackerdisc_hit2

HPAngleMotor
anglemotor1e.txt
anglemotor2e.txt

HX_hazard_skirts
hazard_flipper.txt

JX_SKZ_nightmare_disc
nightdisc.txt


thats about half of the custom components that i have got.
i have more but i will do them later.

Offline Jack Daniels

  • *
  • Posts: 2719
  • Rep: 9
  • Losing Tournaments with Style
    • matt.morrill.12
  • Awards BOTM Winner
    • View Profile
    • My abandoned online RPG project.
    • Awards
I need some help With the bot exchange.
« Reply #19 on: November 09, 2009, 11:34:12 AM »
I wish I could help... but my knowledge with this stuff is not all that good.

As a cheerleader though, I will say thanks for working on this project! You guys are awesome.