Results 1 to 7 of 7

Thread: Archmage Weapon Spawn Bug?

  1. Default Archmage Weapon Spawn Bug?

    I've been playing Archmage and when I got the Weapon of the Sorcerer leveled it would give me an M14 every single round. It's only as I've been leveling it up that I'm not getting the M14 as often. With one point in the skill I'm getting it near 100% of the time.

  2. Default

    I can assure you that the odds do go up. However you may have just been really lucky early on. Sometimes things can activate multiple times in a row like that randomly as there is no such thing as a truly random program.



  3. Default

    The probability of getting a weapon is supposed to be 30% right? I have 1 point in the Weapon of the Sorcerer skill and I've been spawning with an M14 for an entire map of 20 rounds without not spawning it even once. I can't say much for the Deagle, I havn't been testing that, just the M14. I've died every single round and still i've spawned with teh M14 the following round.
    Last edited by Me Haha; 02-21-2011 at 01:51 PM.

  4. Default

    Quote Originally Posted by Me Haha View Post
    The probability of getting a weapon is supposed to be 30% right? I have 1 point in the Weapon of the Sorcerer skill and I've been spawning with an M14 for an entire map of 20 rounds without not spawning it even once. I can't say much for the Deagle, I havn't been testing that, just the M14. I've died every single round and still i've spawned with teh M14 the following round.
    put more points into it.

    Maynard - The WCS Guy

  5. Default

    Quote Originally Posted by maynard View Post
    put more points into it.
    sounds like that will actually end up hurting you...kind of like the old night elf evasion glitch
    Quote Originally Posted by OMGBEARS
    I feel it is important for me to let you know how feeble your efforts to strike such feelings inside of me really are. I have the internal fortitude of a large animal, an elephant, for instance. Likewise, I'm the result of coitus between the devil and a pack mule made out of chainsaws, so I am extremely strong, and carry little care for others in this world. Trees also stand aside due to my chainsaw blood.
    Quote Originally Posted by ๖ReS View Post
    How am I supposed to tell you to fuck off without replying ?

  6. Default

    As you can see there is no reason it would not be working correctly:

    Code:
    new Float:DeagleArr[]={0.0,0.3,0.4,0.5,0.5,0.5,0.5};
    new Float:ColtArr[]={0.0,0.0,0.0,0.0,0.3,0.4,0.5};
    Code:
    new Float:odds=Math_GetRandomFloat(0.0,1.0);
                if(DeagleArr[wep_level]<=odds)
                {
                    new wep2 = GetPlayerWeaponSlot( client, CS_SLOT_SECONDARY );
                    if( IsValidEdict( wep2 ) )
                    {
                        W3DropWeapon(client,wep2);
                        UTIL_Remove( wep2 );
                    }
                    GivePlayerItem(client,"weapon_deagle");
                    PrintToChat(client,"Got Degal");
                }
                if(ColtArr[wep_level]<=odds)
                {
                    new wep1 = GetPlayerWeaponSlot( client, CS_SLOT_PRIMARY );
                    if( IsValidEdict( wep1 ) )
                    {
                        W3DropWeapon(client,wep1);
                        UTIL_Remove( wep1 );
                    }
                    GivePlayerItem(client,"weapon_m4a1");
                    PrintToChat(client,"Got M4A1");
                }



  7. Default

    Actually now having posted that and reading it your totally correct. A patch will be released changing the location of odds.



Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •