mIRCForumlari - mIRC ve IRC Kullanıcılarının Paylaşım Platformu
  https://www.sosyalchat.com/


SohbetG.Com

Kullanıcı Etiket Listesi

Yeni Konu aç Cevapla
 
Seçenekler
Alt 16 Ocak 2023, 09:45   #1
Çevrimdışı
Üyelik tarihi: 07 Aralık 2022
Konular: 21281
Mesajlar: 24.385
Nerden: İstanbul
Cinsiyet: Erkek
Web Site: TRmIRC.Net
IRC Sunucu: IRC.TRmIRC.Net
Alınan Beğeni: 3913
Beğendikleri: 7042
@RahmetLi
Ruh Hali : : Olu Gibi
Standart UnrealIRCD (/helpmotd) Helper Listesi

Kod : Kodu kopyalamak için üzerine çift tıklayın!

/* * /helpmotd modulü by YouMyCure */ #include "config.h" #include "struct.h" #include "common.h" #include "sys.h" #include "numeric.h" #include "msg.h" #include "proto.h" #include "channel.h" #include <time.h> #include <sys/stat.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #ifdef _WIN32 #include <io.h> #endif #include <fcntl.h> #include "h.h" #ifdef STRIPBADWORDS #include "badwords.h" #endif #ifdef _WIN32 #include "version.h" #endif DLLFUNC int m_helpmotd(aClient *cptr, aClient *sptr, int parc, char *parv[]); #define MSG_HELPMOTD "HELPMOTD" #define TOK_HELPMOTD "t" #define HMOTD "ircd.helpmotd" ModuleHeader MOD_HEADER(m_helpmotd) = { "m_helpmotd", "$Id$", "Helper Motd Eklentisi by YouMyCure /helpmotd", "3.2-b8-1", NULL }; DLLFUNC int MOD_INIT(m_helpmotd)(ModuleInfo *modinfo) { add_Command(MSG_HELPMOTD, TOK_HELPMOTD, m_helpmotd, MAXPARA); MARK_AS_OFFICIAL_MODULE(modinfo); return MOD_SUCCESS; } DLLFUNC int MOD_LOAD(m_helpmotd)(int module_load) { return MOD_SUCCESS; } DLLFUNC int MOD_UNLOAD(m_helpmotd)(int module_unload) { if (del_Command(MSG_HELPMOTD, TOK_HELPMOTD, m_helpmotd) < 0) { sendto_realops("Failed to delete commands when unloading %s", MOD_HEADER(m_helpmotd).name); } return MOD_SUCCESS; } DLLFUNC int m_helpmotd(aClient *cptr, aClient *sptr, int parc, char *parv[]) { FILE *dosya; char buf[BUFSIZE]; dosya = fopen(HMOTD, "r"); if (dosya != NULL) { while (fgets(buf, sizeof(buf), dosya)) { sendto_one(sptr, ":%s", buf); } return 0; } }



Kalbim Atar Cansız, Geçmez Gün Ahsız, Vahsız..
  Alıntı ile Cevapla

Cevapla
Etiketler
eklentisi, pro


Konuyu Toplam 1 Üye okuyor. (0 Kayıtlı üye ve 1 Misafir)