sadece jailde kullanabilecek sekilde ayarlayabilirmisiniz
Temamızın yeni versiyonuna geçilmiştir.
Görüş & Önerileriniz için [email protected] adresine mail atabilirsiniz.
Reklam gösterimini engelleyici yazılım kullandığınızı görüyoruz.
Sitemizin ayakta kalıp sizlere hizmet edebilmek için en büyük gelir kaynağı sayfamızda gösterilen reklamlardır.
Reklam gösterimde bizim sayfamıza ayrıcalık tanıyarak ayakta kalmamıza destek olmak ister misiniz ?
Konu
Buyur;
PHP Kod:
#include <amxmodx>
#include <hamsandwich>
#include <fakemeta>
#include <fun>
native jb_get_user_packs(id)
native jb_set_user_packs(id, ammount)
#define PLUGIN "T Hook"
#define VERSION "1.0"
#define AUTHOR "Smash"
#define TAG " Rafuals Gaming "
new bool:hook[33]
new hook_to[33][3]
new hook_speed_cvar
new beamsprite
new spidermanmk[33]
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
new map[ 32 ]
get_mapname(map,31);
if((containi(map,"jail") == -1) && (containi(map,"jail_") == -1)) return
register_concmd("+thook","hook_aktif")
register_concmd("-thook","hook_off")
hook_speed_cvar = register_cvar("thook_speed","13")
register_clcmd("say /hook","spiderman")
register_logevent("Event_RoundStart", 2, "1=Round_Start")
RegisterHam(Ham_TakeDamage, "player", "OnCBasePlayer_TakeDamage")
}
public plugin_precache()
{
beamsprite = precache_model("sprites/olympos.spr")
precache_sound("hook/oly.wav")
}
public hook_aktif(id,level,cid)
{
if(spidermanmk[id] == 1){
set_user_gravity(id,0.0)
set_task(0.1,"hook_prethink",id+10000,"",0,"b")
hook[id]=true
hook_to[id][0]=999999
hook_prethink(id+10000)
emit_sound(id,CHAN_VOICE,"hook/oly.wav", 1.0, ATTN_NORM, 0, PITCH_NORM)
return PLUGIN_CONTINUE
}
return PLUGIN_CONTINUE
}
public hook_off(id)
{
if(is_user_alive(id)) set_user_gravity(id)
hook[id]=false
return PLUGIN_HANDLED
}
public hook_prethink(id)
{
id -= 10000
if(!hook[id])
{
remove_task(id+10000)
return PLUGIN_HANDLED
}
//Get Id's origin
static origin1[3]
get_user_origin(id,origin1)
if(hook_to[id][0]==999999)
{
static origin2[3]
get_user_origin(id,origin2,3)
hook_to[id][0]=origin2[0]
hook_to[id][1]=origin2[1]
hook_to[id][2]=origin2[2]
}
//ct icin renk olustur
message_begin(MSG_BROADCAST,SVC_TEMPENTITY)
write_byte(1) // baslatalim
write_short(id) // start entity
write_coord(hook_to[id][0])
write_coord(hook_to[id][1])
write_coord(hook_to[id][2])
write_short(beamsprite)
write_byte(1) // framestart
write_byte(1) // framerate
write_byte(2) // life in 0.1's
write_byte(5) // width
write_byte(0) // noise
write_byte(0) // red
write_byte(0) // green
write_byte(225) // blue
write_byte(100) // brightness
write_byte(0) // speed
message_end()
static Float:velocity[3]
velocity[0] = (float(hook_to[id][0]) - float(origin1[0])) * 3.0
velocity[1] = (float(hook_to[id][1]) - float(origin1[1])) * 3.0
velocity[2] = (float(hook_to[id][2]) - float(origin1[2])) * 3.0
static Float:y
y = velocity[0]*velocity[0] + velocity[1]*velocity[1] + velocity[2]*velocity[2]
static Float:x
x = (get_pcvar_float(hook_speed_cvar) * 120.0) / floatsqroot(y)
velocity[0] *= x
velocity[1] *= x
velocity[2] *= x
set_pev(id,pev_velocity,velocity)
return PLUGIN_CONTINUE
}
public spiderman(id)
{
if(get_user_flags(id) & ADMIN_RCON) {
spidermanmk[id] = 1
renkli_yazi(id,"!g[!t%s!g]!gHook ' Un Aktif Oldu Kullanmak Icin !tB !gTusuna Bas",TAG)
}else{
renkli_yazi(id,"!g[!t%s!g]!gHook KULLANAMAZSINIZ!Sadece Server Kuruculari !tKULLANABILIR",TAG)
}
}
stock renkli_yazi(const id, const input[], any:...)
{
new count = 1, players[32];
static msg[191];
vformat(msg, 190, input, 3);
replace_all(msg, 190, "!n", "^x01"); // Default Renk(Sar??
replace_all(msg, 190, "!g", "^x04"); // Ye??Renk
replace_all(msg, 190, "!t", "^x03"); // Tak??enk( CT mavi , T k??z??
if (id) players[0] = id; else get_players(players, count, "ch"); {
for (new i = 0; i < count; i++)
{
if (is_user_connected(players[i]))
{
message_begin(MSG_ONE_UNRELIABLE, get_user_msgid("SayText"), _, players[i]);
write_byte(players[i]);
write_string(msg);
message_end();
}
}
}
}
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ deff0{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang1055\\ f0\\ fs16 \n\\ par }
*/
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ deff0{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang1055\\ f0\\ fs16 \n\\ par }
*/
Boş ol , boş ol , boş ol.
Konunuz Çözülmüş İsteklere Taşınmıştır.
Konu ile Alakalı Benzer Konular | |||||
Konular | Yazar | Yorumlar | Okunma | Son Yorum | |
OYT GÖRE UYARLAMA | Melih1907 | 3 | 257 |
22-11-2019, Saat: 11:58 Son Yorum: By.KinG |
|
elin el degerli oyuncusu oyt uyarlama | hkN. | 6 | 312 |
27-08-2019, Saat: 19:13 Son Yorum: Aconyonn |
|
OYT Göre Uyarlama | DarkBlue Melih | 3 | 323 |
04-08-2019, Saat: 23:02 Son Yorum: Smash |
|
jaile uyarlama | hkN. | 3 | 274 |
24-04-2019, Saat: 20:43 Son Yorum: MawiLarq |
|
lr jaile ayarlancak | akSakaLLı. | 6 | 377 |
20-02-2019, Saat: 00:01 Son Yorum: Kalipso22 |
Konuyu Okuyanlar: 1 Ziyaretçi