Results 1 to 10 of 77

Thread: 033 Santa [320] v1.0.3

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. Default

    Santa does not give items, in fact no race does. Therefore it is not possible for a race to cause this glitch.

    The item should have been removed on death. There appears to be an issue with the buff or item system where as some events are not being set off for some reason.

    ---------- Post added at 11:13 PM ---------- Previous post was at 11:10 PM ----------

    For example here is my method for respawn:
    Code:
    /*
     * RESPAWN CLIENT
     * 
     * @param client        Player to respawn.
     * @return                True on success, false otherwise.
     */
    stock bool:RespawnClient(client)
    {
        if(Client_IsValid(client, true))
        {
            if(!IsPlayerAlive(client)&&GetClientTeam(client)>1)
            {
                War3_SpawnPlayer(client);
                
                PrintHintText(client,"Respwaned");
                
                //Ensure weapons stripped
                KnifeOnly(client);
                
                // give them their weapons
                for(new s=0;s<10;s++)
                {
                    new String:wep_check[64];
                    War3_CachedDeadWeaponName(client,s,wep_check,64);
                    if(!StrEqual(wep_check,"",false) && !StrEqual(wep_check,"weapon_c4") && !StrEqual(wep_check,"weapon_knife"))
                    {
                        GivePlayerItem(client,wep_check);
                    }
                }
                
                //give full armor
                SetEntProp(client,Prop_Send,"m_ArmorValue",100);
                
                //RESPAWN SUSCESS
                return true;
            }
            return false;
        }
        return false;
    }



  2. Default

    yeah..whatever you said lol. i was just thinking it's santa because i was able to replicate it easily and i hadn't seen it happen before on any other races.

    Through the darkness of futures past,
    The magician longs to see
    One chants out between two worlds:
    Fire, walk with me.

  3. Default

    Please restrict this race to require a minimum of 6 people (non bots) on the server when maxed. This is another race that kills servers.

    fast flying races with offensive capabilities when moving (when maxed) should bet set to something like one for every 4 people per team. So 6-8 people playing allows 1 per team, 16 people playing allows 2 per team, and 20 people playing allows 3 per team. The races in this category are Strider Hiryu and Santa.
    What: my life skills use meat

    “Let us be thankful for the fools. But for them the rest of us could not succeed. ” -Mark Twain

Posting Permissions

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