Round Bitimi bu şekilde tetikleniyor. Gerisin ayarlayabileceğini umuyorumPHP- Kodu:
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_logevent("eRoundEnd",2,"1=Round_End")
}
public eRoundEnd() {
client_cmd(0,"spk muzik")
}
Başlıkta belirttiğim gibi el başı çalanı buldum fakat el sonu çalanı bulmama rağmen daha farklı benim istediğim CT , T yada iki takımın tamamı ölünce bir müziğin çalması ve herkesin bunu duyması
[ 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.
]
Round Bitimi bu şekilde tetikleniyor. Gerisin ayarlayabileceğini umuyorumPHP- Kodu:
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_logevent("eRoundEnd",2,"1=Round_End")
}
public eRoundEnd() {
client_cmd(0,"spk muzik")
}
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.
CS:GO ve CS 1.6 için ücretli eklenti yapılır.
Plugin yazmak isteyenlere yardımcı olabilirim.
Skype adresimden ulaşabilirsiniz: destek_596
Steam: http://steamcommunity.com/id/ca-nemesis/
Bu oldu birde round start için yapar mısın elimde var ama farklı sanırım biraz ?PHP- Kodu:
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "Yeni Plugin"
#define VERSION "1.0"
#define AUTHOR "OzgurKardas.- K4"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_logevent("eRoundEnd",2,"1=Round_End")
}
public eRoundEnd() {
client_cmd(0,"spk sound/hosnudeddin")
}
PHP- Kodu:
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "Music At Round Start"
#define VERSION "0.3"
#define AUTHOR "mix97mix"
#define START_SOUND "sound/eysanliordu.wav"
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
register_event("HLTV", "Event_HLTV_New_Round", "a", "1=0", "2=0")
}
public plugin_precache() //Sound must be precached or plugin will not work !
{
precache_sound(START_SOUND)
}
public Event_HLTV_New_Round(id)
{
client_cmd(id, "spk %s", START_SOUND )
}
Konu Furkan Dize tarafından (28-10-12 Saat 17:32 ) değiştirilmiştir.
[ 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.
]
Herkeste olmayan sesleri precache etmen gerek. Yani server yüklenirken yoksa indirtmen gerek.PHP- Kodu:
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "Yeni Plugin"
#define VERSION "1.0"
#define AUTHOR "OzgurKardas.- K4"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_logevent("eRoundEnd",2,"1=Round_End")
}
public plugin_precache() {
precache_sound("sound/hosnudeddin.wav")
}
public eRoundEnd() {
client_cmd(0,"spk sound/hosnudeddin")
}
Elinde olan plugin de çalışır.
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.
CS:GO ve CS 1.6 için ücretli eklenti yapılır.
Plugin yazmak isteyenlere yardımcı olabilirim.
Skype adresimden ulaşabilirsiniz: destek_596
Steam: http://steamcommunity.com/id/ca-nemesis/
Elimde olan pluginide senin yaptığın gibi yapar mısın çünkü yükledim plugini müziği indirmiyor
---------- Alttaki Mesaj Zamani 16:31 ---------- Önceki Mesaj Zamani 15:59 ----------
Onada bi ayar çek
[ 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.
]
PHP- Kodu:
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "Yeni Plugin"
#define VERSION "1.0"
#define AUTHOR "OzgurKardas.- K4"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_logevent("eRoundStart",2,"1=Round_Start")
}
public plugin_precache() {
precache_sound("sound/eysanliordu.wav")
}
public eRoundStart() {
client_cmd(0,"spk sound/eysanliordu")
}
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.
CS:GO ve CS 1.6 için ücretli eklenti yapılır.
Plugin yazmak isteyenlere yardımcı olabilirim.
Skype adresimden ulaşabilirsiniz: destek_596
Steam: http://steamcommunity.com/id/ca-nemesis/
Konu Cözüldüğü İçin Çözülmüş İstekler Bölümüne Taşınmıştır !
İletişim ;
MSN : DeaTReX
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
SKYPE : DeaTReX
Fakelerim Çıkmaya Başlamış Lütfen
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
& DeaTReX Adreslerinden Başka Hesabım Yoktur Lütfen Onlara Kanmayınız !
Sunuculara Ve Serverlara Özel Plugin Ve Mod Kodlanır