Welcome to the forum 👋, Guest

To access the forum content and all our services, you must register or log in to the forum. Becoming a member of the forum is completely free.

  • PËRSHËNDETJE VIZITOR!

    Nëse ju shfaqet ky mesazh do të thotë se ju nuk jeni regjistruar akoma. Anëtarët e rregjistruar kanë privilegjin të marrin pjesë në tema të ndryshme si dhe të komunikojnë me anëtarët e tjerë. Bëhu pjesë e forumit Netedy.com duke u REGJISTRUAR këtu ose nëse ke një llogari KYCU. Komunikim alternative i ketij forumi me vajza dhe djem nga te gjithe trevat shqiptare? Hyr ne: CHAT SHQIP.

Si te bejme !ban dhe !unban TCL per eggdrop

MasterMind

VIP
Nt2 V.I.P
Regjistruar më
Kor 14, 2017
Mesazhe
12
Pershendetje!
Kjo TCL kerkohet shum andaj vendosa qe te publikoj nje tutorial te thjesht ketu sesi ta ndertojme!

Marrim nje kod te thjeshte ne faqen Help te TCL-Eggdrop site.

Code:
    bind pub O !ban bannick
proc bannick {nick host handle chan text} {
  putserv "PRIVMSG $chan :Hello $nick"
}

Ky eshte nje kod i thjesht i marr nga faqa zyrtare. Pra me pak mendje te zgjuar dhe modifikime e bejm te bej ato qe duam ne te bejme:
Shpjegimi i fjaleve ne ate pjese te kodit.
$nick = (Nick qe i jep komanden botit)
$text = (Nick qe boti do bej Ban ne kanal)
$chan = (Kanali ku do vendoset ban)
$host = (hosti atij qe i jep komanden botit)

Dhe rezultati eshte ky:
Code:
bind pub O !ban bannick
proc bannick {nick host handle chan text} {
  putserv "MODE $chan +b $text"
}

Per Unban e njejta gje vetem se -b
Code:
bind pub O !unban unbannick
proc unbannick {nick host handle chan text} {
  putserv "MODE $chan -b $text"
}

per ti vendosur nje sinjalistike botit kur nuk eshte AOP useri qe jep komanden dhe Eggdrop-i

Code:
if {[botisop $chan == 0} {
  putserv "PRIVMSG $chan Me ngri @op qe te bej ato qe me kerkon."
} elseif {[isop $nick $chan] == 0} {
  putserv "PRIVMSG $chan ti nuk je @op ne kanal, kshuqe nuk komandohem nga ti"
} else {
putserv "MODE $chan +b $text"
}

E thjeshte ee? :)
Ta gezoni. Mos harroni te me permendni nese ju kam ndihmuar kur ta ndertoni!
 

Postime të reja

Theme customization system

You can customize some areas of the forum theme from this menu.

Choose the color combination according to your taste

Select Day/Night mode

You can use it by choosing the day and night modes that suit your style or needs.

Welcome to the forum 👋, Guest

To access the forum content and all our services, you must register or log in to the forum. Becoming a member of the forum is completely free.