Hp Azalınca zaten kırmızı olma durumu oluyor ekranın birde 1 kere bile vuran kişi 10 Damageden aşağı vurmaz buda kırmızı ekranın aktif olacagı anlamına geliyor yok yinede ayarla diyorsan halledelim
Teşekkürler tam istediğim gibi fakat son ekleyebilirsen birşey söylemek istiyorum mesela darbe alınca yada hpmiz azaldığında 1 saniyelik ekran hafiften böyle bi kırmızılık olsun hani böyle abartılacak kadar kırımızılık değil hafif bi kırmızılık olsun yapabilirsen teşekkürler şimdiden
[ OSMANLI IMP # F-TIPI JAILBREAK ]
[ İMAN AHLAK ADALET ]
[ Pit10 ]
-facebook-
[
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
]
[
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
]
-diğer sosyal ağlarımız-
[
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
]
[
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
]
[
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
]
[
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
]
Hp Azalınca zaten kırmızı olma durumu oluyor ekranın birde 1 kere bile vuran kişi 10 Damageden aşağı vurmaz buda kırmızı ekranın aktif olacagı anlamına geliyor yok yinede ayarla diyorsan halledelim
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Evet haklısında şey bu 10 hpnin altına düşünce acaip çok kızarıyor :S Onu azaltabilir misin böyle adam madam gözükmüyor adam resmen çok garip oluyorOnu ayarlayabilrsen iyi olur bu arada senin bi fikrin var mı hani şöyle yapsam daha hoş olur gibisinden ?
[ OSMANLI IMP # F-TIPI JAILBREAK ]
[ İMAN AHLAK ADALET ]
[ Pit10 ]
-facebook-
[
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
]
[
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
]
-diğer sosyal ağlarımız-
[
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
]
[
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
]
[
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
]
[
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
]
istersen kırmızıyı kaldırıp deprem koyabilirizde oda adam vurmayı engeller) şuanlık bir düşüncem yok eğer istersen sadece 20 HP nin altına düşünce kırmızı ekran gelsin ?
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
evet öyle olabilirde dediğim gibi kırmızılık böyle etrafı görmeyi engelliyecek şekilde olmazsa güzel olur birde ses sürekli geliyor böyle saniye arasıyla ses belli olsa olmazmı çünkü bazen komutcunun ses az oluyor o sesle komutcunun sesi karışık falanonuda ayarlayabilrsen iyi olur ayarlayamazsan canın sağolsun
[ OSMANLI IMP # F-TIPI JAILBREAK ]
[ İMAN AHLAK ADALET ]
[ Pit10 ]
-facebook-
[
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
]
[
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
]
-diğer sosyal ağlarımız-
[
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
]
[
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
]
[
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
]
[
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
]
Canın 20'dan Aşağı Düşünce Kırmızı Ekran Aktif.
Canın 50'den Aşağı Düşünce Nefes Alma Sesleri Aktif.
Böylece Sağlıklı Komut Dinleyebilirler.
PHP- Kodu:
#include <amxmodx>
#include <amxmisc>
#include <fun>
#define PLUGIN "Hp Kontrol"
#define VERSION "1.0"
#define AUTHOR "K4DavRa"
new sounds[] = "kalpatisi.wav"
#define FFADE_IN 0x0000
#define FFADE_OUT 0x0001
#define FFADE_MODULATE 0x0002
#define FFADE_STAYOUT 0x0004
enum {
Red,
Green,
Blue
};
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
}
public client_authorized(id)
{
set_task(1.0, "Can", id, _, _, "b")
}
public plugin_precache()
{
precache_sound(sounds)
}
public Can(id)
{
if(is_user_connected(id) && is_user_alive(id) )
{
new Hp;
Hp = get_user_health(id)
if( Hp < 100) {
set_user_health(id,get_user_health(id) + 1)
}
if(Hp < 50) {
client_cmd(id,"spk sound/kalpatisi")
}
if(Hp < 20) {
switch(random_num(1,3))
{
case 1:
{
UTIL_ScreenFade(id, {100,0,0}, 0.4, 0.1, 230, FFADE_OUT | FFADE_STAYOUT, false,false)
}
case 2:
{
UTIL_ScreenFade(id, {100,0,0}, 0.7, 0.1, 230, FFADE_IN, false,false)
}
case 3:
{
UTIL_ScreenFade(id,{100,0,0},1.0,0.2,255,FFADE_IN,false,false)
}
}
}
}
}
stock UTIL_ScreenFade(id=0,iColor[3]={0,0,0},Float:flFxTime=-1.0,Float:flHoldTime=0.0,iAlpha=0,iFlags=FFADE_IN,bool:bReliable=false,bool:bExternal=false)
{
if( id && !is_user_connected(id))
return;
new iFadeTime;
if( flFxTime == -1.0 )
{
iFadeTime = 4;
}
else
{
iFadeTime = FixedUnsigned16( flFxTime , 1<<12 );
}
static gmsgScreenFade;
if( !gmsgScreenFade )
{
gmsgScreenFade = get_user_msgid("ScreenFade");
}
new MSG_DEST;
if( bReliable )
{
MSG_DEST = id ? MSG_ONE : MSG_ALL;
}
else
{
MSG_DEST = id ? MSG_ONE_UNRELIABLE : MSG_BROADCAST;
}
if( bExternal )
{
emessage_begin( MSG_DEST, gmsgScreenFade, _, id );
ewrite_short( iFadeTime );
ewrite_short( FixedUnsigned16( flHoldTime , 1<<12 ) );
ewrite_short( iFlags );
ewrite_byte( iColor[Red] );
ewrite_byte( iColor[Green] );
ewrite_byte( iColor[Blue] );
ewrite_byte( iAlpha );
emessage_end();
}
else
{
message_begin( MSG_DEST, gmsgScreenFade, _, id );
write_short( iFadeTime );
write_short( FixedUnsigned16( flHoldTime , 1<<12 ) );
write_short( iFlags );
write_byte( iColor[Red] );
write_byte( iColor[Green] );
write_byte( iColor[Blue] );
write_byte( iAlpha );
message_end();
}
}
stock FixedUnsigned16(Float:flValue, iScale)
{
new iOutput;
iOutput = floatround(flValue * iScale);
if ( iOutput < 0 )
iOutput = 0;
if ( iOutput > 0xFFFF )
iOutput = 0xFFFF;
return iOutput;
}
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Teşekkürler birde bir sorum daha olucaktı mesela şöyle bi durum var bazıları bütün pluginleri tek pluginde topluyor bazılarıda ayrı ayrı kullanıyor pluginleri hangisi daha sağlıklı sizce ? yararları ve zararlarıyla birlikte anlatırsanız memnun kalırım
[ OSMANLI IMP # F-TIPI JAILBREAK ]
[ İMAN AHLAK ADALET ]
[ Pit10 ]
-facebook-
[
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
]
[
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
]
-diğer sosyal ağlarımız-
[
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
]
[
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
]
[
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
]
[
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
]
Ayrı Ayrı Kullanmak Daha iyi diye düşünüyorum gerekçem şu pluginde ne kadar çok satır olursa cpu kullanımı o kadar artar yani belli olan kodu aramaya çalışırken makina yavaslayabilir buda serverda yavaşlamaya neden açar veya plugininin görevini görmesini yavaşlatır 1 saniyelik işi 3-4-5 saniyeye kadar çıkartabilir.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Hm teşekkürler başka bir sorum daha olucak bu el sonu ct win falan yazıyorya onu nasıl değiştirebilirim ?
[ OSMANLI IMP # F-TIPI JAILBREAK ]
[ İMAN AHLAK ADALET ]
[ Pit10 ]
-facebook-
[
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
]
[
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
]
-diğer sosyal ağlarımız-
[
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
]
[
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
]
[
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
]
[
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
]
bir eventi veya logeventi vardı şuan aklımda değil.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.