Videolu anlatım olsa daha iyi anlaşılır yinede teşekkürler.
Öncelikle CFG sadece oyun performansını arttırmaya yarayan şeyler değildir.Bu dersimizde bunu göreceksiniz.Örnek olarak basit bir CFG yazalım.
Bu dersimizde aşağıdaki 2 karakteri kullanacağız.Bunlar:
"
;
Bu karakterler ne işe yarar?
-Bir tuşa birden fazla görev atamaya yarar.
İlk olarak " işareti komutun başına ve sonuna konur.
Örn:
bind c "komut"
; işareti ise komutların başına yazılır.
Örnek olarak
bind c say bu deneme bir yazidir.
yazdıgımız zaman "bind <key> command" hatası ile karşılaşırız.Ama;
bind c "say bu deneme bir yazidir." yazdigimiz zaman yazmak istedigimiz komut işlev görür.
Üstte yazdıklarımı en az 5 kere okuyun.İyice anladığınız zaman aşağıdaki basit anti hile cfgsini inceleyin.
bind "f1" "say YASAKLI F1 TUSU KULLANILDI;wait;wait;quit"
bind "f2" "say YASAKLI F1 TUSU KULLANILDI;wait;wait;quit"
bind "f3" "say YASAKLI F1 TUSU KULLANILDI;wait;wait;quit"
bind "f4" "say YASAKLI F1 TUSU KULLANILDI;wait;wait;quit"
bind "f5" "say YASAKLI F1 TUSU KULLANILDI;wait;wait;quit"
bind "f6" "say YASAKLI F1 TUSU KULLANILDI;wait;wait;quit"
bind "f7" "say YASAKLI F1 TUSU KULLANILDI;wait;wait;quit"
bind "f8" "say YASAKLI F1 TUSU KULLANILDI;wait;wait;quit"
bind "f9" "say YASAKLI F1 TUSU KULLANILDI;wait;wait;quit"
bind "f10" "say YASAKLI F1 TUSU KULLANILDI;wait;wait;quit"
bind "f11" "say YASAKLI F1 TUSU KULLANILDI;wait;wait;quit"
bind "f12" "say YASAKLI F1 TUSU KULLANILDI;wait;wait;quit"
bind "insert" "say YASAKLI F1 TUSU KULLANILDI;wait;wait;quit"
bind "delete" "say YASAKLI F1 TUSU KULLANILDI;wait;wait;quit"
bind "end" "say YASAKLI F1 TUSU KULLANILDI;wait;wait;quit"
bind "mouse1" "attack;say SU ANDA ATES EDIYORUM"
Kodu inceleyin.; <= bu karakter sayesinde bir tuşa 2 komut atadım.
; karakterini çekiç
" karakterini çivi
yazacagımız komutu tabela,
duvarıda Cs 1.6 gibi düşünelim;
Öncelikle bir tabela var(komut).Bu tabelayı bir duvara çakmamız gerek(Cs.1.6)İlk önce tabelayı yani "bind c komut1 komut2"yi duvara yani cs 1.6ya çakalım.ilk önce çiviyi tabelanın üstüne uygun bir yere koyalım.sonuç:"bind c komut1;komut2".daha sonra çekiçle çivileri çakalım.sonuç:"bind "c" "komut1;komut2;"
İlk dersimiz bitmiştir.İkinci ders 2 gün içinde yeni konu olarak açılacaktır.
Konu ard26tr tarafından (17-06-13 Saat 18:35 ) değiştirilmiştir.
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.
Videolu anlatım olsa daha iyi anlaşılır yinede teşekkürler.
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.
Nice!!