Jump to content
[[Template core/global/global/lkeyWarning is throwing an error. This theme may be out of date. Run the support tool in the AdminCP to restore the default theme.]]

Potrzebny plugin, edycja pluginu.


MuHeHe
 Share

Recommended Posts

Witam otóż potrzebuje pomocy z pluginem, żeby go nieco przerobić, tak samo jak drugi plugin zrobić.

Ten Plugin wymieniony niżej podobno działa

Więc tak chciałbym, aby ten plugin:

- Odradzał tylko i wyłącznie Zombie

- Odradzał nowych graczy, którzy dopiero weszli na serwer w połowie rundy jako Zombie.

#include 
#include 

#define PLUGIN "Auto Respawn"
#define AUTHOR "hiroshima"
#define VERSION "1.0"

new czas[33]

public plugin_init()
{
           register_plugin(PLUGIN, VERSION, AUTHOR)
           RegisterHam(Ham_Killed, "player","Killed", 1)
           set_task(90.0,"info",_,_,_,"b")
}
public Killed(id)
{
           if(get_user_flags(id) & ADMIN_LEVEL_H)
           {
                           czas[id] = 2;
                           if( task_exists(id))
                           {
                                           remove_task(id)
                           }
                           set_task(1.0,"timer",id,_,_,"b")
           }
           else
           {
                           czas[id] = 8;
                           if( task_exists(id))
                           {
                                           remove_task(id)
                           }
                           set_task(1.0,"timer",id,_,_,"b")
           }
}
public Respawn(id)
{
           ExecuteHamB(Ham_CS_RoundRespawn, id)
}
public timer(id)
{
           set_hudmessage(170, 255, 85, -1.0, 0.0, 0, 6.0, 1.0)
           show_hudmessage(id, "Odrodzisz sie za %d sekund",czas[id])

           czas[id]--
           if(czas[id] <= 0)
           {
                           Respawn(id)
                           if( task_exists(id))
                           {
                                           remove_task(id)
                           }
           }
}
public info()
{
           for(new id = 1;id < 33;id++)
           {
                           if(!is_user_alive(id))
                           {
                                           new name[33]
                                           get_user_name(id,name,32)
                                           set_hudmessage(170, 255, 127, -1.0, -1.0, 0, 6.0, 6.0)
                                           show_hudmessage(id, "Witaj %s chcesz automatyczny respawn?^n Wejdz na xyz.pl",name)
                           }
           }
}

2. Potrzebuje pluginu, żeby zamrażał zombie po Infekcji na jakiś okres czasu, do unikalnego moda.

Przykład: Jest 10 sekund do infekcji, jak kogoś zarazi to ta osoba, nie może się ruszać przez kolejne 10 sekund. Dopiero po 10 sekundach ten [Zombie] może się ruszać i gonić CT.

Z góry dziękuje, mam nadzieję, że ktoś pomoże ;)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

×
×
  • Create New...

Important Information

By using this site, you agree to our Privacy Policy.