AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Suggestions / Requests (https://forums.alliedmods.net/forumdisplay.php?f=12)
-   -   Simple Respawn (https://forums.alliedmods.net/showthread.php?t=90842)

CuLLi 04-23-2009 10:29

Simple Respawn
 
I want a simple respawn plugin without weapons menu, spawn protection or etc.

When you kill you will respawned and nothing more. And a cvar to toggle (amx_respawn <1|0>)

I want to use this at knife server.

Arkshine 04-23-2009 11:35

Re: Simple Respawn
 
Respawn where ? With or without delay ?

CuLLi 04-23-2009 11:49

Re: Simple Respawn
 
without. respawn to the base (when you start, depend by map)

can you try? :D

hleV 04-23-2009 11:56

Re: Simple Respawn
 
Quote:

Originally Posted by CuLLi (Post 812275)
When you kill you will respawned

Do you mean "When you are killed, you are respawned"?
Code:
#include <amxmodx> #include <hamsandwich>   #define RESPAWN_DELAY 2.0   public plugin_init()         RegisterHam(Ham_Killed, "player", "PlayerKilled", 1);   public PlayerKilled(Victim)         if (!is_user_alive(Victim))                 set_task(RESPAWN_DELAY, "PlayerRespawn", Victim);   public PlayerRespawn(Client)         if (!is_user_alive(Client))         {                 remove_task(Client);                 ExecuteHamB(Ham_CS_RoundRespawn, Client);         }

CuLLi 04-23-2009 12:57

Re: Simple Respawn
 
+karma thx :D

one more question. which plugin is part of this:


Quote:

* Take care, you are on a deathstreak with 4 deaths in a row.
i want to delete this stupid message :|

csdm?

.vitor 04-23-2009 13:13

Re: Simple Respawn
 
miscstats.amxx ( default amxx plugin for cs )

CuLLi 04-23-2009 13:20

Re: Simple Respawn
 
Quote:

Originally Posted by .vitor (Post 812411)
miscstats.amxx ( default amxx plugin for cs )

this will swith off the rank and top also :(

YamiKaitou 04-23-2009 13:20

Re: Simple Respawn
 
amx_statscfgmenu

.vitor 04-23-2009 15:28

Re: Simple Respawn
 
Quote:

Originally Posted by CuLLi (Post 812418)
this will swith off the rank and top also :(

Actually this won't, disabling miscstats will just disable those "cool" hud messages about whats happening, like bombs defuse etc...
Rank and top15 will keep working as they are from statsx plugin ( or csstats, dunno, but its not miscstats )

Or if you don't want to disable it anyway, you can do what YamiKaitou is saying, disabling specific things you don't want from miscstats

CuLLi 04-24-2009 08:53

Re: Simple Respawn
 
with disabled miscstats is show that :|

amx_statscfgmenu

i leave on only rank and top but not working.

Quote:

* Take care, you are on a deathstreak with 4 deaths in a row.
this is not hud message


All times are GMT -4. The time now is 05:56.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.