GoldenEye: Source Forums

  • March 28, 2024, 08:53:13 am
  • Welcome, Guest
Advanced search  

News:

Pages: 1 2 [3] 4 5 ... 10
 21 
 on: May 21, 2023, 09:40:52 pm 
Started by Jeron [SharpSh00tah] - Last post by CptLima
Good evening.

 22 
 on: May 21, 2023, 02:16:40 pm 
Started by Jeron [SharpSh00tah] - Last post by markpeterjameslegg
Hey all. Bright and sunny day here in the UK, hope you are all well.

 23 
 on: May 11, 2023, 12:46:02 am 
Started by Jeron [SharpSh00tah] - Last post by TriDefiance
It's good to see everyone here from time to time. I hope all is well!

 24 
 on: May 07, 2023, 06:52:59 am 
Started by Jeron [SharpSh00tah] - Last post by kraid
Just had to drop in and say hey!
Hey Jeron.

 25 
 on: May 06, 2023, 11:51:44 am 
Started by Jeron [SharpSh00tah] - Last post by Wake[of]theBunT
I think it's been more slow moving in the past few years. But I also love to see the community forum presence going on. Getting toward 18 years, for anyone following along  :o

 26 
 on: April 26, 2023, 03:49:40 pm 
Started by Jeron [SharpSh00tah] - Last post by mbsurfer
I saw the release of Source 2 with CS2 and immediately thought about this mod. Also glad to see it's going strong. Hope everyone has been doing well over the years

 27 
 on: March 31, 2023, 06:42:17 pm 
Started by Jeron [SharpSh00tah] - Last post by Jeron [SharpSh00tah]
Hello to my long lost brothers and sisters!

Just had to drop in and say hey!

I hope everyone is doing well, and I LOVE the fact this game is still going strong!

I miss the development days for sure :( but I was just talking to someone about this, and that conversation made me have to come back and pop my head in

See you all around!

 28 
 on: March 19, 2023, 07:18:28 am 
Started by Game_Master001 - Last post by Game_Master001
Thanks! My Python skills are sadly non-existent, but I can make simple changes. What I tried was the following, but it only works half. As a test, I set a weaponlist of 9 levels consisting of the RCP90 for the first 7 rounds, the Magnum for round 8, and the Golden PP7 for round 9. It doesn't work during warm-up (gives everyone the KF7 and Slappers, which is according to the Arsenal weaponlist which I set to all KF7 to test my changes), which is 100% fine with me. During the game itself, the bots run around with the RCP90 showing I did something right, but I have no weapons whatsoever. How come? Here's the relevant part of Arsenal.py I edited

P.s. I know I removed the Slappers from this part of the code. That's intentional (I of course also tried with the original file with the Slappers, same problem):

    # Give player their level specific weapon and the slappers
    def ar_GivePlayerWeapons( self, player ):
        if not player or player.IsDead() or len(self.weaponList) < 8:
            return

        player.StripAllWeapons()

        lvl = self.ar_GetLevel( player )

        if lvl < 8:
            weap = "weapon_rcp90"
        if lvl == 8:
            weap = "weapon_cmag"
        if lvl == 9:
            weap = "weapon_golden_pp7"

        player.GiveNamedWeapon( weap, 800 ) # We use infinite ammo so who cares about exact ammo amounts

        player.WeaponSwitch( weap )

 29 
 on: March 19, 2023, 01:38:50 am 
Started by Game_Master001 - Last post by Entropy-Soldier
Unfortunately you'll have to make your own system for arsenal loadouts if you want more than 8 slots. 

The GE:S weaponset system requires exactly 8 weapon slots, as it's used to spawn weapons around the map in deathmatch style gamemodes and each slot corresponds to a specific collection of weapon spawners.  That being said, gamemodes like Arsenal don't actually have to use it since they're not using map spawners.  You can set up your own text file parser for arbitrarily sized lists, or just hardcode a collection of sets into the gamemode itself. You'll of course not be able to see the weapons in the weaponset list popout, but you could possibly display them somewhere else.  This naturally requires modifying non-trivial sections of the Arsenal python file, but it should be a fairly straightforward exercise if you're interested in messing around with python.


Hope that helps!

 30 
 on: March 18, 2023, 11:47:32 pm 
Started by Game_Master001 - Last post by Game_Master001
So, several years ago I was looking into this with the topic asking how to set up Arsenal into GunGame, but then things happened midway and I never returned to that, until now.

Well, getting Arsenal to go to lvl 16 is now no problem for me: in Arsenal.py, I just set maxLevel to 16, and increase the range at the comment "# Store all the current weaponset's weapons in a list for easy access." from 0, 8 to 0, 16 (I think this is what I missed back there, as now I properly get to lvls 9-16). To be completely safe, I also set the entry len(self.weaponList) < 7 to 15.

Yet while I get to lvl 9+ properly and also of course set up the Arsenal weaponlist properly, I find that it gives no weapon (just "None"). There still seems to be some limit somewhere that prevents the game from reading entries 8 to 15 in the Arsenal's weaponlist, but I can't find it in any of the files. Anyone knows where I can find this limit so I change it? The only thing I thought could be the issue was __init__.py in the same folder as Arsenal.py which has an entry with as range 0, 8, but I set it to 0, 16 as a test without improvement, so that's not it (I of course changed it back after I was done testing).

Pages: 1 2 [3] 4 5 ... 10