atlama sende![]()
Yüksek Yerden Düşünce HP Gitmeme Plugini İstiyorum Teşekkürlerr.
---------- Alttaki Mesaj Zamani 22:08 ---------- Önceki Mesaj Zamani 22:00 ----------
Yardım Edeeen ?
---------- Alttaki Mesaj Zamani 22:10 ---------- Önceki Mesaj Zamani 22:08 ----------
10 Görüntülenme 0 cevap :S
atlama sende![]()
Onun İçin Değil zm İçin
![]()
Paraşüt Diye Bir Şey Var...
___________________________
|İletişim :
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
|--------------------------------------|
------------------ En Sevdiğim Konular -----------------------
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.
Ben size Plugin Diyom Siz Gidiyonuz paraşüt diyonuz![]()
Paraşütte Bir Plugin....
___________________________
|İletişim :
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
|--------------------------------------|
------------------ En Sevdiğim Konular -----------------------
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.
Bekle Ben Yapicam İşşallah Daha yeni başladım .
---------- Alttaki Mesaj Zamani 19:07 ---------- Önceki Mesaj Zamani 19:05 ----------
Kardeş Yapamadim Ya .üzülme Ama
![]()
Eğer Yanlışlıkla Bir hata yaptıysam.
-> * Saçma Sapan YazılarKüfürler Yerine
-> * Bana Ulaş :
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
veya
*--->
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
OnLyPro # Team .
YararLı - Konularım :
- >>
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
devamı Gelicek
Msn :
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
>>
HackBoy Önemli DeğilParaşüt Bir Plugin Ama bindlerseniz Bir plugin.
---------- Alttaki Mesaj Zamani 23:28 ---------- Önceki Mesaj Zamani 23:26 ----------
Zollex Adminlerden Yardım AL !
Gereken cevaplar verilmiş. Bunun daha ötesi yoktur. He ille istiyorum diyorsanız, forum kurucusu;
Schwertle'ye ulaşın.
Buyur arkadaşım öte diyarlardan getirdim.PHP- Kodu:
#include <amxmodx>
#include <engine>
#define FALL_VELOCITY 350.0
public plugin_init() {
register_plugin("Otelerden Gelen Plugin", "0.2", "akcaliberk");
if(!cvar_exists("mp_falldamage")) {
register_cvar("mp_falldamage", "0");
}
}
new bool:falling[33];
public client_PreThink(id) {
if(get_cvar_num("mp_falldamage") == 0
&& is_user_alive(id)
&& is_user_connected(id)) {
if(entity_get_float(id, EV_FL_flFallVelocity) >= FALL_VELOCITY) {
falling[id] = true;
} else {
falling[id] = false;
}
}
}
public client_PostThink(id) {
if(get_cvar_num("mp_falldamage") == 0
&& is_user_alive(id)
&& is_user_connected(id)) {
if(falling[id]) {
entity_set_int(id, EV_INT_watertype, -3);
}
}
}
Konu akcaliberkk tarafından (09-06-12 Saat 20:09 ) değiştirilmiştir.