Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
/admin Plugin'ini Düzenleme ( Renklendirme )
#11
Teşekkürler Hocam Gercekten Kök Salmış Sağlam bir Pluginci Oldugunu Bu Tur Seylerle Kanıtlıyorsun. Yalnız Benim Resimde Attığım Gibi Yapabilirsen iyi olabılır Bazı Yerlerı atlamıssın
Reply
#12
[Image: attachment.php?attachmentid=10241&stc=1] Reis Şimdi Hata Yapmıssın Galiba Cunkı Biraz Değişik Olmus. benim Attığım Örnekteki Gibi Yapabılrısen İyi Olur suan Attığım Resim Bize düzenleyip verdiğin /admin plugini düzeltebilirsen sevinirim

#akcaliberkk

- - - - - - - - - -

[Image: attachment.php?attachmentid=10241&stc=1] Reis Şimdi Hata Yapmıssın Galiba Cunkı Biraz Değişik Olmus. benim Attığım Örnekteki Gibi Yapabılrısen İyi Olur suan Attığım Resim Bize düzenleyip verdiğin /admin plugini düzeltebilirsen sevinirim

#akcaliberkk


Attached Files
.jpg   2015-01-10_00001.jpg (Size: 236.22 KB / Downloads: 148)
Reply
#13
Renk sorunundan mı bahsediyorsun kardeşim?
Reply
#14
mlhcnshn dateline='' Wrote: Renk sorunundan mı bahsediyorsun kardeşim?
patroon06'nın verdiği resimdeki gibi yapılırsa güzel olur bence.

- - - - - - - - - -

mlhcnshn dateline='' Wrote: Renk sorunundan mı bahsediyorsun kardeşim?
patroon06'nın verdiği resimdeki gibi yapılırsa güzel olur bence.
MaMi [$]
95.173.173.
111
Www.Facebook.Com
/DGJail
Www.Facebook.Com/DissidenTJail
Www.Youtube.Com/DGClannn
Skype: DissidenT.Gaming
Reply
#15


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/

Reply
#16
Teşekkürler Kardeşim Ellerine Kollarına Sağlık..
Reply
#17
Rica ederim


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/

Reply
#18
mlhcnshn dateline='' Wrote: Renk sorunundan mı bahsediyorsun kardeşim?
Melih kardeş şu plugini türkçe olarak yapma şansın var mı ? akçalı yapmış ama türkçe olarak değiştirebilirmisin
#include <amxmodx>

/*---------------EDIT ME------------------*/
#define ADMIN_CHECK ADMIN_KICK

static const COLOR[] = "^x04" //green
static const CONTACT[] = ""
/*----------------------------------------*/

new maxplayers
new gmsgSayText

public plugin_init() {
register_plugin("Admin Check", "1.51", "OneEyed")
maxplayers = get_maxplayers()
gmsgSayText = get_user_msgid("SayText")
register_clcmd("say", "handle_say")
register_cvar("amx_contactinfo", CONTACT, FCVAR_SERVER)
}

public handle_say(id) {
new said[192]
read_args(said,192)
if( ( containi(said, "who") != -1 && containi(said, "admin") != -1 ) || contain(said, "/admin") != -1 )
set_task(0.1,"print_adminlist",id)
return PLUGIN_CONTINUE
}

public print_adminlist(user)
{
new adminnames[33][32]
new message[256]
new contactinfo[256], contact[112]
new id, count, x, len

for(id = 1 ; id <= maxplayers ; id++)
if(is_user_connected(id))
if(get_user_flags(id) & ADMIN_CHECK)
get_user_name(id, adminnames[count++], 31)

len = format(message, 255, "^x01[SFP]%s ADMINS ONLINE: ^x03",COLOR)
if(count > 0) {
for(x = 0 ; x < count ; x++) {
len += format(message[len], 255-len, "%s%s ", adminnames[x], x < (count-1) ? ", ":"")
if(len > 96 ) {
print_message(user, message)
len = format(message, 255, "^x03 ")
}
}
print_message(user, message)
}
else {
len += format(message[len], 255-len, "^x03 No admins online.")
print_message(user, message)
}

get_cvar_string("amx_contactinfo", contact, 63)
if(contact[0]) {
format(contactinfo, 111, "%s Contact Server Admin -- ^x03 %s", COLOR, contact)
print_message(user, contactinfo)
}
}

print_message(id, msg[]) {
message_begin(MSG_ONE, gmsgSayText, {0,0,0}, id)
write_byte(id)
write_string(msg)
message_end()
}


- - - - - - - - - -

mlhcnshn dateline='' Wrote: Renk sorunundan mı bahsediyorsun kardeşim?
Melih kardeş şu plugini türkçe olarak yapma şansın var mı ? akçalı yapmış ama türkçe olarak değiştirebilirmisin
#include <amxmodx>

/*---------------EDIT ME------------------*/
#define ADMIN_CHECK ADMIN_KICK

static const COLOR[] = "^x04" //green
static const CONTACT[] = ""
/*----------------------------------------*/

new maxplayers
new gmsgSayText

public plugin_init() {
register_plugin("Admin Check", "1.51", "OneEyed")
maxplayers = get_maxplayers()
gmsgSayText = get_user_msgid("SayText")
register_clcmd("say", "handle_say")
register_cvar("amx_contactinfo", CONTACT, FCVAR_SERVER)
}

public handle_say(id) {
new said[192]
read_args(said,192)
if( ( containi(said, "who") != -1 && containi(said, "admin") != -1 ) || contain(said, "/admin") != -1 )
set_task(0.1,"print_adminlist",id)
return PLUGIN_CONTINUE
}

public print_adminlist(user)
{
new adminnames[33][32]
new message[256]
new contactinfo[256], contact[112]
new id, count, x, len

for(id = 1 ; id <= maxplayers ; id++)
if(is_user_connected(id))
if(get_user_flags(id) & ADMIN_CHECK)
get_user_name(id, adminnames[count++], 31)

len = format(message, 255, "^x01[SFP]%s ADMINS ONLINE: ^x03",COLOR)
if(count > 0) {
for(x = 0 ; x < count ; x++) {
len += format(message[len], 255-len, "%s%s ", adminnames[x], x < (count-1) ? ", ":"")
if(len > 96 ) {
print_message(user, message)
len = format(message, 255, "^x03 ")
}
}
print_message(user, message)
}
else {
len += format(message[len], 255-len, "^x03 No admins online.")
print_message(user, message)
}

get_cvar_string("amx_contactinfo", contact, 63)
if(contact[0]) {
format(contactinfo, 111, "%s Contact Server Admin -- ^x03 %s", COLOR, contact)
print_message(user, contactinfo)
}
}

print_message(id, msg[]) {
message_begin(MSG_ONE, gmsgSayText, {0,0,0}, id)
write_byte(id)
write_string(msg)
message_end()
}
MaMi [$]
95.173.173.
111
Www.Facebook.Com
/DGJail
Www.Facebook.Com/DissidenTJail
Www.Youtube.Com/DGClannn
Skype: DissidenT.Gaming
Reply
#19
Reply
#20
Teşekkürler.Smile
MaMi [$]
95.173.173.
111
Www.Facebook.Com
/DGJail
Www.Facebook.Com/DissidenTJail
Www.Youtube.Com/DGClannn
Skype: DissidenT.Gaming
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Vıp Plugın nihat331333 17 9,612 27-05-20, 08:57
Last Post: duzceli
  Admin Yetkileri | Yetki Harfleri | Anlamları | Kullanım Şekilleri JDM 44 48,287 25-04-19, 21:10
Last Post: rahmi59
  Takim Skor Plugin chirkinqral 5 10,263 02-02-18, 21:06
Last Post: fenakoyar

Foruma Atla:


Users browsing this thread: 1 Guest(s)
🔥 Bu Forumdan Popüler Konular
Pluginlerde Bug veya Hata Konusu Açmadan Önce Oku — 18,515 görüntülenme, 36 cevap
Akcaliberkk ve Pluginden anlayanlar baksn — 12,769 görüntülenme, 7 cevap