Jump to content

Recommended Posts

Posted

I want to introduce you my cat.

 

His name is Felix.

He lives on my Desktop.

I don't know how old he is, but he is under my protection about 1 year.

There he is :

 

felixwq0.jpg

 

He has some brothers & sisters that are looking for an owner.

If you are interested :

http://rapidshare.com/files/154484440/felix.exe.html

 

Posted

Nice programm :P. The cat can walk on the windows xD

 

BTW is 100% Safe

(Win32/Joke.ScreenMate) >.>

Not even recognised as a virus...

My Nod32 opens it without any problem...

Posted

How can u say its safe? LoL The virus total Found:

 

Antivírus Versão Última Atualização Resultado

AhnLab-V3 2008.10.16.0 2008.10.16 Win-AppCare/Xema.307200

AntiVir 7.9.0.4 2008.10.16 -

Authentium 5.1.0.4 2008.10.16 W32/Trojan2.CMRB

Avast 4.8.1248.0 2008.10.15 -

AVG 8.0.0.161 2008.10.16 -

BitDefender 7.2 2008.10.16 -

CAT-QuickHeal 9.50 2008.10.16 -

ClamAV 0.93.1 2008.10.16 -

DrWeb 4.44.0.09170 2008.10.16 -

eSafe 7.0.17.0 2008.10.15 -

eTrust-Vet 31.6.6150 2008.10.16 -

Ewido 4.0 2008.10.15 -

F-Prot 4.4.4.56 2008.10.15 W32/Trojan2.CMRB

F-Secure 8.0.14332.0 2008.10.16 -

Fortinet 3.113.0.0 2008.10.16 Joke/Screenmates

GData 19 2008.10.16 -

Ikarus T3.1.1.34.0 2008.10.16 -

K7AntiVirus 7.10.496 2008.10.15 Trojan.Win32.Malware.1

Kaspersky 7.0.0.125 2008.10.16 -

McAfee 5406 2008.10.16 -

Microsoft 1.4005 2008.10.16 -

NOD32 3526 2008.10.16 Win32/Joke.ScreenMate

Norman 5.80.02 2008.10.15 -

Panda 9.0.0.4 2008.10.15 -

PCTools 4.4.2.0 2008.10.15 -

Prevx1 V2 2008.10.16 Malicious Software

Rising 20.66.31.00 2008.10.16 -

SecureWeb-Gateway 6.7.6 2008.10.16 -

Sophos 4.34.0 2008.10.16 -

Sunbelt 3.1.1727.1 2008.10.16 Backdoor.Win32.Xhaker.i

Symantec 10 2008.10.16 -

TheHacker 6.3.1.0.114 2008.10.15 -

TrendMicro 8.700.0.1004 2008.10.16 -

VBA32 3.12.8.7 2008.10.16 -

ViRobot 2008.10.16.1422 2008.10.16 -

VirusBuster 4.5.11.0 2008.10.15 -

 

 

LoL i Preffer play whit my own cat w00t

Posted

Read again the Virus Results:

 

Fortinet    3.113.0.0    2008.10.16    [glow=red,2,300]Joke/Screenmates[/glow]

NOD32    3526    2008.10.16    [glow=red,2,300]Win32/Joke.ScreenMate[/glow]

Prevx1    V2    2008.10.16    [glow=red,2,300]Malicious Software[/glow]

 

Its just a suspicious file.

Its recognised as a Virus by some Anti-Virus programmes because its an .exe file

and uses some commands that a virus would use that way...

 

P.S : Im using Nod32 and when i run the .exe i dont get any error or virus report. :P

Believe me or not its completely SAFE.

Posted

Its completely safe.

btw i recorded it, its in small window cuz my HyCam2 cant record more:D

Its a fun thing, he walk around screen and doying things yap, U can open a folder and he can walk on its top.

wideo: http://www.youtube.com/watch?v=2ule6XmvbnQ

use it, its fun:p.

Posted

Is it like Bonzie Buddy, an annoying monkey I had years ago? I would play Cs 1.0 back then and It would minimize my game in a weird moment to tell me a silly joke :S

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • First, don't really follow the "main voice", moreover if you consider it an hobby. Simply do what you want, you got only one life so use it as you want. If you make it an hobby, it's exactly like piano, or velo - only practice makes you better.   Secondly, how do you learn things ? It's actually a really important question, since some can simply be scholar, read books (theory) then practice ; and some simply can't read books. I'm the second type, I hated school, I find it boring - my knowledge in Java comes from try-and-fail. You improve your coding style every year or so, I can myself rewrite my own code (which I already considered top-notched) after a while. You always learn something new - even if Java barely evolves. L2J is a fun way to learn programming, it's a giant sandbox where you can edit anything, and I believe it should be taken as it.   My own way of learning was as follow : Add existing customs, no matter what they are : the point is to know main classes used by L2J / customs. L2J is barely Java knowledge ; the true knowledge is to know WHAT to search in WHICH location (what I call, organization). You have to understand than EVERYTHING you think already exists, in a form on another, in the source code. A custom is only the association of the different mechanisms you found "here and there", glued together in a proper goal. Once you know main classes to edit, and the customs you added are compiling fine, the main point is to know WHAT exactly you DID. Try to understand WHY and WHERE you actually copied the code. Third point would be to MANIPULATE the customs you added in order to fit your wish. First edit little values, then logic conditions ; eventually add a new Config, or a new functionality to the custom. Fourth point would be to begin to craft your own ideas. Once again, EVERYTHING already exists, in a form or another. You want a cycled event ? You got Seven Signs main task as exemple. Npc ? Search any type of Npc and figure out what it does. Fifth point would be to understand Java - mostly containers (WHAT and WHERE to use them), variables types and main Java mechanisms (inheritance, static modifier, etc). You should also begin to cut your code into maintainable classes or methods. Java can actually run without optimization, but bigger your ideas, more optimized and well-thought it should be. It's direct saved time in the future, and you would thank yourself doing so. Main tips : ALWAYS use any type of versioning system - GIT or SVN. It allows to save your work, step by step and eventually revert back anytime you want if you terribly messed up. L2J is 80% organization knowledge, and 20% Java knowledge. Basically, if you know WHAT and WHERE to search, if you aren't dumb, it's easy to replicate and re-use things. Cherry on top is to use a already good coded pack to avoid copy-paste crap and get bad habits. Avoid any type of russian or brazilian packs, for exemple - their best ability is to leak someone's else code. Obviously you need some default sense of logic, but Java and programming in general help you to improve it.   Finally, most of your questions could be solved joining related Discord (at least for aCis, I can't speak for others) - from the moment your question was correctly asked (and you seemed to search for the answer). My community (and myself) welcomes newbies, but got some issues with noobies.   The simpliest is to try, fail and repeat until you succeed - it sounds stupid, but that's basically how life works.   PS : about Java ressources, before ChatGPT, it was mostly about stackoverflow website, and site like Baeldung's one. With ChatGPT and alike, you generally double-cross AI output to avoid fucked up answers. Also, care about AI, they are often hallucinating really hard, even today. They can give you complete wrong answer, you tell them they are wrong, and they say "indeed, I suck, sorry - here's a new fucked up answer". You shouldn't 100% rely over AI answer, even if that can give sometimes legit answers, full code or just skeletons of ideas.   PPS : I don't think there are reliable ressources regarding L2J itself, also most of the proposed code decays pretty fast if the source code is actually maintained (at least for aCis). Still, old coded customs for old aCis sources are actually a good beginner challenge to apply on latest source.
    • WTS: - AQ - Baium - Zaken  - Frintezza - Vesper Fighter Focus Fire Element   pm for detalis
    • We have the best price! L2Reborn.org Signature x1 Franz NEW!! 1KK = $20 HURRY TO BUY AT THE TOP PRICE discord - adver745645
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock