Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - G.K.

Pages: 1 ... 605 606 607 608 609 610 611 [612] 613 614 615 616 617 618 619 ... 663
12221
General Support / Re: Arena
« on: January 19, 2010, 01:03:23 PM »
Still not appearing in list:
Code: [Select]
from __future__ import generators
import plus
import Arenas
import random
import Hazards
import math

class Box(Arenas.SuperArena):
    "Twiiiiiiiiiiiiiiiisted"
    name = "Twiiiiiiiiiiiiiisted Arena"
    preview = "twisted/twi_preview.bmp"
    game_types = ['DEATHMATCH', 'BATTLE ROYAL', 'TEAM MATCH']
    extent = (-15, 15, 15, -15)

    def __init__(self):
        Arenas.SuperArena.__init__(self, "Arenas/twisted/twisted.gmf")
        #plus.Arena.__init__(self, "")
        plus.setBackColor(.36, .537, .788)
       
        degrad = 0.01745
        self.AddStaticCamera("Battle View", (19.5, 15, 19.5), (50*degrad,225*degrad), 55*degrad)
        self.AddStaticCamera("High Flipper View", (-19.5, 45, -19.5), (48*degrad,45*degrad), 84*degrad)
        self.AddStaticCamera("Birds Eye View", (0, 45, 0), (90*degrad,0), 75*degrad)
        self.AddWatchCamera("Combat Cam", (-12, 8, 12), (16, 36, 65*degrad, 30*degrad))
        self.AddWatchCamera("Aerial Cam", (-19.5, 35, -19.5), (50, 60, 45*degrad, 60*degrad))
        self.AddWatchCamera("Ground Cam", (8, -5, -8), (15, 40, 75*degrad, 35*degrad))
        self.AddWatchCamera("Spectator Cam", (13, 15, 13), (6, 18, 45*degrad, 45*degrad))
   
    self.players = ()

    def AddShadowReceivers(self):
        self.SetShadowSource(5.897, 19.159, 5.899)
       
    def Activate(self, on):
        if on: self.players = plus.getPlayers()
       
        Arenas.SuperArena.Activate(self, on)

    def Tick(self):
       for each in self.players:
          if plus.getLocation(each)[-2] < -6: # Adjust this parameter to floor height(s).
             plus.eliminatePlayer(each)
       
Arenas.register(Box)

12222
Discussion / Re: The most iconic robot of RA2
« on: January 19, 2010, 01:02:38 PM »
I think of TrippeR, my stock HW popup when I think of RA2. i have no idea about iconic bots though. I joined the community too recently.

12223
Chatterbox / Re: The most memorable and funniest quotes thread.
« on: January 19, 2010, 12:50:01 PM »
Quote from: Reier on techsupportguy forums
Well....that did exeptional in the nothing department.

12224
General Support / Re: Arena
« on: January 19, 2010, 12:29:49 PM »
Ok

12225
Tournament Archives / Re: Terror twisters Discussion
« on: January 19, 2010, 12:26:02 PM »
I wish I went WAY overkill with my entry. I could have used DDT's for everything.

Fixed

12226
Site News and Feedback / Re: New Forum Feedback
« on: January 19, 2010, 12:19:33 PM »
As I see Sys32 is now an advanced user, I'd like to reccomend that Firebeetle is promoted to veteran. He was back online the other day.

12227
Site News and Feedback / Re: New tags
« on: January 19, 2010, 11:39:00 AM »
*facepalm*

A Awards

It was right above you

12228
Modifications / Re: NAR AI pack releases !
« on: January 19, 2010, 11:30:19 AM »
Two small things Nary, although they're probably my fault:
Team Hell's motto should be 'Don't expect to leave alive' rather than 'come alive'
Vortex of Doom doesn't fire its piston. That's because I somehow forgot the SZ. I'll post it's update in a min. Update: https://gametechmods.com/uploads/files/Team57.zip

12229
Tournament Archives / Re: Terror twisters Discussion
« on: January 19, 2010, 11:10:31 AM »
Lol

12230
General Support / Re: Arena
« on: January 19, 2010, 11:07:05 AM »
Guys, major problem. I start up the arena and find that it crashes the game. I can see the arena itself fine, so I presume the error's in the .py rather than the gmf. Here it is:
Code: [Select]
from __future__ import generators
import plus
import Arenas
import random
import Hazards
import math

class Box(Arenas.SuperArena):
    "Twiiiiiiiiiiiiiiiisted"
    name = "Twiiiiiiiiiiiiiisted Arena"
    preview = "twisted/twi_preview.bmp"
    game_types = ['DEATHMATCH', 'BATTLE ROYAL', 'TEAM MATCH']
    extent = (-15, 15, 15, -15)

    def __init__(self):
        Arenas.SuperArena.__init__(self, "Arenas/twisted/twisted.gmf")
        #plus.Arena.__init__(self, "")
        plus.setBackColor(.36, .537, .788)
       
        degrad = 0.01745
        self.AddStaticCamera("Battle View", (19.5, 15, 19.5), (50*degrad,225*degrad), 55*degrad)
    self.AddStaticCamera("High Flipper View", (-19.5, 45, -19.5), (48*degrad,45*degrad), 84*degrad)
    self.AddStaticCamera("Birds Eye View", (0, 45, 0), (90*degrad,0), 75*degrad)
    self.AddWatchCamera("Combat Cam", (-12, 8, 12), (16, 36, 65*degrad, 30*degrad))
    self.AddWatchCamera("Aerial Cam", (-19.5, 35, -19.5), (50, 60, 45*degrad, 60*degrad))
    self.AddWatchCamera("Ground Cam", (8, -5, -8), (15, 40, 75*degrad, 35*degrad))
    self.AddWatchCamera("Spectator Cam", (13, 15, 13), (6, 18, 45*degrad, 45*degrad))
   
        self.players = ()

    def AddShadowReceivers(self):
        self.SetShadowSource(5.897, 19.159, 5.899)
       
    def Activate(self, on):
        if on: self.players = plus.getPlayers()
       
        Arenas.SuperArena.Activate(self, on)

    def Tick(self):
       for each in self.players:
          if plus.getLocation(each)[-2] < -6: # Adjust this parameter to floor height(s).
             plus.eliminatePlayer(each)
       
Arenas.register(Box)

12231
Tournament Archives / Re: Terror twisters Discussion
« on: January 19, 2010, 11:06:04 AM »
See Craaig's post.

Avalanche, what software are you filming it with?

12232
Chatterbox / Re: The most memorable and funniest quotes thread.
« on: January 19, 2010, 10:58:38 AM »
I posted a better one from him.

12233
Tournament Archives / Re: Terror twisters Discussion
« on: January 19, 2010, 10:58:06 AM »
as in the limit for MW's.

12234
Tournament Archives / Re: Terror twisters Discussion
« on: January 19, 2010, 10:51:53 AM »
800

12235
General Support / Re: Arena
« on: January 19, 2010, 10:48:49 AM »
Hey, SM, get on Hamachi. I'll post my ideas for the rules there.

12236
Tournament Archives / Re: Terror twisters Discussion
« on: January 19, 2010, 10:47:04 AM »
Stock HW

By armour I meant external armour.

12237
Tournament Archives / Re: Terror twisters Discussion
« on: January 19, 2010, 10:44:09 AM »
Sparkey, it's only just makes the weight limit, and has no armour. You'll be killed.

12238
Tournament Archives / Re: Terror twisters Discussion
« on: January 19, 2010, 10:38:01 AM »
Hopefully it won't be spammed by them I will not stop entering mine though.

12239
General Support / Re: Arena
« on: January 19, 2010, 10:35:31 AM »
Hehe.

12240
DSL TC Showcases / Re: G.K.'s DSL Showcase
« on: January 19, 2010, 10:32:43 AM »
SnS = obvious ripoff is obvious though :P

Not as far as I'm aware. I refined a bot I made ages ago. It is a SHW Reier.

Pages: 1 ... 605 606 607 608 609 610 611 [612] 613 614 615 616 617 618 619 ... 663