Strict Standards: Non-static method phpbb_feed_factory::init() should not be called statically in /www/htdocs/w00bacd2/darkmule/forum/feed.php on line 66
[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 173: Cannot modify header information - headers already sent by (output started at [ROOT]/feed.php:66)
[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 174: Cannot modify header information - headers already sent by (output started at [ROOT]/feed.php:66)
DarkMule Saugen ist geil! 2004-04-25T19:48:25+02:00 https://darkmule.de/feed.php?f=12&t=7561 2004-04-25T19:48:25+02:00 2004-04-25T19:48:25+02:00 https://darkmule.de/viewtopic.php?t=7561&p=52343#p52343 <![CDATA[mods gebannt]]>

Statistik: Verfasst Author: VEGETA — 25.04.2004, 19:48


]]>
2004-04-25T19:47:21+02:00 2004-04-25T19:47:21+02:00 https://darkmule.de/viewtopic.php?t=7561&p=52342#p52342 <![CDATA[mods gebannt]]>
Oder stell dir das gleich als Bin?r vor - so wie dein Rechner sowas ja verarbeitet :D

Statistik: Verfasst Author: WiZaRd — 25.04.2004, 19:47


]]>
2004-04-25T19:45:42+02:00 2004-04-25T19:45:42+02:00 https://darkmule.de/viewtopic.php?t=7561&p=52340#p52340 <![CDATA[mods gebannt]]> Aber wenn man sich ein bisschen damit besch?ftigt, wird das mit der Zeit. :D


Da t?uscht du dich - das sieht ja im Prinzip noch viel schlimmer aus - ?ffne mal eine .exe mit nem HexEditor, dann verstehst, was ich meine
Oder zieh mal ne exe durch einen Assembler :D

Aber Hex kann man jetzt nicht mit C++ vergleichen Wizard.
Da sind nur noch lauter Ziffern :-)

Statistik: Verfasst Author: VEGETA — 25.04.2004, 19:45


]]>
2004-04-25T19:22:03+02:00 2004-04-25T19:22:03+02:00 https://darkmule.de/viewtopic.php?t=7561&p=52334#p52334 <![CDATA[mods gebannt]]>

C++ ist eine recht effektive Sprache, obwohl es nat?rlich bessere gibt, ich glaube auch, dass einige Spiele in C++ geschrieben sind.

Statistik: Verfasst Author: WiZaRd — 25.04.2004, 19:22


]]>
2004-04-25T19:13:45+02:00 2004-04-25T19:13:45+02:00 https://darkmule.de/viewtopic.php?t=7561&p=52329#p52329 <![CDATA[mods gebannt]]>

Original geschrieben von WiZaRd

Hey, kein Problem :D

Code: Alles auswählen
if (StrStrI(m_clientModString, "emule-client")||
StrStrI(m_clientModString, "Powermule")||
Ban();


Das funzt !?

Ich hab nicht gesehen, dass die das im Mod-String haben - mach das mal so, dann kannste zuschauen wie sie fliegen :D
Code: Alles auswählen
   CString strBuffer = m_pszUsername;
   strBuffer.MakeUpper();
   strBuffer.Remove(' ');

   //Ban unwanted, PowerMule, eMule-Client
   if (strBuffer.Find("POWERMULE") != -1){
      if(!this->IsBanned()){
            AddWiZaRdLogLine(false, "Client (%s) benutzt PowerMule -> banned!",m_pszUsername);
         this->Ban();
      }
   }
   if (strBuffer.Find("EMULE-CLIENT") != -1){
      if(!this->IsBanned()){
         AddWiZaRdLogLine(false, "Client (%s) benutzt eine eMule-Client.de-Version -> banned!",m_pszUsername);
         this->Ban();
      }
   }


Alter!!! Sowas kann man verstehen??? Ich find das hart das ein Programm im Grund nur aus w?rtern besteht. Sind die Spiele eigentlich auch in der Sprache?

Statistik: Verfasst Author: Kriegsheld — 25.04.2004, 19:13


]]>
2004-04-25T15:45:37+02:00 2004-04-25T15:45:37+02:00 https://darkmule.de/viewtopic.php?t=7561&p=52236#p52236 <![CDATA[mods gebannt]]>

Statistik: Verfasst Author: WiZaRd — 25.04.2004, 15:45


]]>
2004-04-25T15:43:42+02:00 2004-04-25T15:43:42+02:00 https://darkmule.de/viewtopic.php?t=7561&p=52235#p52235 <![CDATA[mods gebannt]]> Die fliegen Reihenweise
Es werden bei mir ja nicht nur die 2 gebannt. :D

Es geht mit m_pszUsername & den mit dem ModString.

Danke f?r den Code, aber den brauche ich nicht (so schnell geh ich nicht ans coden mehr)
Hab schon ca. 4 neue Mods gebastelt u. alle hatten im Endeffekt gravirende Fehler.

Und das nervt, wenn nix l?uft.

Statistik: Verfasst Author: VEGETA — 25.04.2004, 15:43


]]>
2004-04-25T15:39:43+02:00 2004-04-25T15:39:43+02:00 https://darkmule.de/viewtopic.php?t=7561&p=52233#p52233 <![CDATA[mods gebannt]]>


Code: Alles auswählen
if (StrStrI(m_clientModString, "emule-client")||
StrStrI(m_clientModString, "Powermule")||
Ban();


Das funzt !?

Ich hab nicht gesehen, dass die das im Mod-String haben - mach das mal so, dann kannste zuschauen wie sie fliegen :D
Code: Alles auswählen
   CString strBuffer = m_pszUsername;
   strBuffer.MakeUpper();
   strBuffer.Remove(' ');

   //Ban unwanted, PowerMule, eMule-Client
   if (strBuffer.Find("POWERMULE") != -1){
      if(!this->IsBanned()){
            AddWiZaRdLogLine(false, "Client (%s) benutzt PowerMule -> banned!",m_pszUsername);
         this->Ban();
      }
   }
   if (strBuffer.Find("EMULE-CLIENT") != -1){
      if(!this->IsBanned()){
         AddWiZaRdLogLine(false, "Client (%s) benutzt eine eMule-Client.de-Version -> banned!",m_pszUsername);
         this->Ban();
      }
   }

Statistik: Verfasst Author: WiZaRd — 25.04.2004, 15:39


]]>
2004-04-25T15:34:57+02:00 2004-04-25T15:34:57+02:00 https://darkmule.de/viewtopic.php?t=7561&p=52230#p52230 <![CDATA[mods gebannt]]>


Code: Alles auswählen
if (StrStrI(m_clientModString, "emule-client")||
StrStrI(m_clientModString, "Powermule")||
Ban();
theApp.ipfilter->AddBannedIP(m_dwUserIP,"LeecherMod");
       theApp.emuledlg->AddDebugLogLine(true, "Leecher Mod -> detected [by ModString]-> username '%s', Version String %s, ip %i.%i.%i.%i:%i", m_pszUsername, m_clientVerString, (uint8)m_dwUserIP, (uint8)(m_dwUserIP>>8),(uint8)(m_dwUserIP>>16),(uint8)(m_dwUserIP>>24), GetUserPort());
       return true;



Kann doch mal passieren Bild

Statistik: Verfasst Author: VEGETA — 25.04.2004, 15:34


]]>
2004-04-25T15:12:42+02:00 2004-04-25T15:12:42+02:00 https://darkmule.de/viewtopic.php?t=7561&p=52218#p52218 <![CDATA[mods gebannt]]>

// We want to educate Users of major comercial GPL breaking mods by telling them about the effects
// check for known advertising in usernames
// the primary aim is not to technical block those but to make users use a GPL-conform version

Statistik: Verfasst Author: WiZaRd — 25.04.2004, 15:12


]]>