
anath3ma
Members-
Posts
597 -
Credits
0 -
Joined
-
Last visited
-
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by anath3ma
-
watch out many exploits has came up for ipb final :P mha they cant fix all of this :)
-
[Share] You know about Dual-boxing etc??
anath3ma replied to anath3ma's topic in General Discussion [English]
button class lol:P im kidding imagine totem of wrath x5 :P OMFG:P -
[Share] You know about Dual-boxing etc??
anath3ma replied to anath3ma's topic in General Discussion [English]
no 5 priests 5 shamans or 4 frost mages 1 priest etc -
[Share] You know about Dual-boxing etc??
anath3ma replied to anath3ma's topic in General Discussion [English]
u need to make scripts like /follow <your main char her> or assist like /assist <your main char her> /cast <the same spell with u>wow1 if u want to heal ur self use /target <your main char her> /cast <heal or buffs> well make macros on ur second player and lets say put the follow macro in slot 1 if u push number one ur character gonna use this macro at number 1 and follow u do the same with every macro u wanna use its very easy ah i found 2 errors also or u can tell it "two things that can make errors" [general] version=1805 port=1501 name=user-a7bc35e802 auto_add=0,0,'world of warcraft' auto_connect=1,'127.0.0.1:1320' pass_mouse_clicks=0 send_only=0 distinguish_lr=1 maximizer_enabled=0 always_on_top=0 proxy_enabled=0 proxy= proxy_uname= has_startup_cmd=1 startup_cmd=wow1;wow2 startup_cmd_delay=5 hotkey_bringtofront=0.0 mousefocus=1 [donotpass] whitelist=0 count=0 [roundrobin] count=0 [commands] count=2 command_00=wow1 action_00=D:\Program Files\World of Warcraft\Wow.exe keymap_00=[glow=green,2,300]Z:\home\ruben\Desktop\multy-bot\kcl.kcl[/glow] region_00=reg1 uname_00=1.'' cpu_00=10000000 maxfps_00=40.15 excludeRR_00=0 command_01=wow2 action_01=D:\Program Files\WoW2\Wow.exe keymap_01=[glow=green,2,300]Z:\home\ruben\Desktop\multy-bot\kcl.kcl[/glow] region_01=reg2 uname_01=1.'' cpu_01=10000000 maxfps_01=35.35 excludeRR_01=0 [mousemap] count=0 [regions] count=2 region_name_00='reg2' region_00=1,320,128,1120,768,0,0 region_pip_00=0,(0.0.0) region_name_01='reg1' region_01=1,160,512,960,896,0,0 region_pip_01=0,(0.0.0) [cmd_history] count=1 cmd_00=127.0.0.1 last=127.0.0.1 [override] hotkey=19.0 dnp_hotkey=0.0 rr_hotkey=0.0 enable_overlays=1 enable_audio_reminder=0 reminder_delay=20 message=mute font_name=tahoma font_sz=30 font_color=20.200.0 [sounds] count=6 sound_00=1001,1,'C:\Documents and Settings\user\Desktop\multyb\sounds\open.wav' sound_01=1002,1,'C:\Documents and Settings\user\Desktop\multyb\sounds\close.wav' sound_02=1003,1,'C:\Documents and Settings\user\Desktop\multyb\sounds\override_on.wav' sound_03=1004,1,'C:\Documents and Settings\user\Desktop\multyb\sounds\override_off.wav' sound_04=1005,1,'C:\Documents and Settings\user\Desktop\multyb\sounds\override_reminder.wav' sound_05=1006,1,'C:\Documents and Settings\user\Desktop\multyb\sounds\roundrobin.wav' remove the glowed lines and u should be more allright -
i will be aply to downloaders :P haha
-
python is very easy and its helpful for some types of programing so its not bad to know one more programing language i know c and some things about asm(Linux asm) but python is here to do ur work faster :P
-
[Share] You know about Dual-boxing etc??
anath3ma replied to anath3ma's topic in General Discussion [English]
change options in wow video set the wow in window mode and keep one up and the other minimized i play very well ith 8600 gt 2g ram quadcore 2.5 or just send me ur keyclone.ini to chek it -
[Help] Want to start playing WoW
anath3ma replied to senza.bau's topic in General Discussion [English]
im play sl/sl spec or sl/des -
:P anyway :P what info u want how to compile it how to run it how to conver it in exe? oh well what u can do with this lets say u wanna encrypt one word like "hi" but u dont know the algorithms this program do it for u suport some algorithms like md5 etc its very simple u can convert database keys etc anyway for all this keys is a way to crack decrypt so nothing its safe :P well u need the python to run this program its very simple download python from here ~~~>http://www.python.org/ next install and then put this file into C:\ next open cmd type cd C:\ and next use hash.py or start hash.py anyway u can convert it into exe file
-
hi today i have make a hash converter in python here is the source import hashlib, time, sys print '~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~' print '~ Convert Everything into a hash format ~~~~~~~' print '~ Suport: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~' print '~ md5 sha1 sha224 sha256 sha384 and sha512 ~~~~' print '~ Woot ! Woot! ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~' print '~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~' def md5(): m5=input('Give me the word to Convert it into md5 :') conv=hashlib.md5(m5).hexdigest() print m5,' is now ~~~~> ',conv,'<~~~~ md5 hash!' next=input('Wanna continue with next hashes? for Yes = 1 no = 2\n:') if (next == 1): main() elif (next == 2): print 'Bye...' sys.exit() def sha1(): sh1=input('Give me the word to Convert it into sha1 :') conv=hashlib.sha1(sh1).hexdigest() print sh1,' is now ~~~~> ',conv,'<~~~~ sha1 hash!' next=input('Wanna continue with next hashes? for Yes = 1 no = 2\n:') if (next == 1): main() elif (next == 2): print 'Bye...' sys.exit() def sha224(): sh24=input('Give me the word to Convert it into sha224 :') conv=hashlib.sha224(sh24).hexdigest() print sh24,' is now ~~~~> ',conv,'<~~~~ sha244 hash!' next=input('Wanna continue with next hashes? for Yes = 1 no = 2\n:') if (next == 1): main() elif (next == 2): print 'Bye...' sys.exit() def sha384(): sh38=input('Give me the word to Convert it into sha384 :') conv=hashlib.sha384(sh38).hexdigest() print sh38,' is now ~~~~> ',conv,'<~~~~ sha384 hash!' next=input('Wanna continue with next hashes? for Yes = 1 no = 2\n:') if (next == 1): main() elif (next == 2): print 'Bye...' sys.exit() def sha512(): sh51=input('Give me the word to Convert it into sha512 :') conv=hashlib.sha512(sh51).hexdigest() print sh51,' is now ~~~~> ',conv,'<~~~~ sha512 hash!' next=input('Wanna continue with next hashes? for Yes = 1 no = 2\n:') if (next == 1): main() elif (next == 2): print 'Bye...' sys.exit() def creator(): print 'Im a hash Converter Created by DarkInjection' print 'Mail me @ v-227@hotmail.com' print ':)' def main(): print 'types :' print '1 for ~md5~' print '2 for ~sha1~' print '3 for ~sha224~' print '4 for ~sha384~' print '5 for ~sha512~' print '6 for ~Creds~' inp=input('Give me the hash type to Convert :') if (inp == 1): print 'Wait a moment...' time.sleep(3) md5() if (inp == 2): print 'Wait a moment...' time.sleep(3) sha1() if (inp == 3): print 'Wait a moment...' time.sleep(3) sha224() if (inp == 4): print 'Wait a moment...' time.sleep(3) sha384() if (inp == 5): print 'Wait a moment...' time.sleep(3) sha512() if (inp == 6): print 'Wait a moment...' time.sleep(3) creator() main() and here is the file DOWNLOAD~~~! hope to find it helpfull thnx
-
ta antivirus ine axrista den se afinoun na kanis tin douleia s xamena lefta an kapios to agorasi xamenos xronos an kapios to katevasei spasimo nevron giati varai alarms gia malakies kai alla pola
-
[Help] Want to start playing WoW
anath3ma replied to senza.bau's topic in General Discussion [English]
sl/sl spec or sl/des -
[Share] You know about Dual-boxing etc??
anath3ma replied to anath3ma's topic in General Discussion [English]
its better without maximize -
kita den patheni tpt apo hardware(analogos ti kolises) svisto ego leo kane format bori na exi qqasi ta pada sto pc i bori na mn exis pathei tpt
-
OMIGI pes m oti exis vista :( ..... den ksero an tha doulevi kanonika eksartate to virus
-
eki pou s ipe to antivirus c:/windows/system32/tmp_o.ddl svise afto k svise k oti alo s lei
-
kita otan anigeis to pc sou sou vgieni mavri othoni me aspra gramata stin arxi p s lei gia tin mnimi tin cpu k afta kai sou vgieni k mia defteri pata sinexia to F8 meta me ta velakia dialekse to safe mode k pata enter aplo ine tha ksekinisei to sistima sou mono me files ton windows den exis drivers den tha exis tpt tote boris na sviseis afto to virus p ine sto c:\Windows\system32 giati apla den tha xrisimopoite apo ta windows
-
kita to na exis ena antivirus den ise asfales to na koliseis kati kai na to sviseis pali den ise asfales bori na exis sovara sfalmata sto pc sou xoris na to pareis xabari opos ipa pio prin ta partition den ine asfales kalitera grapse afta p thes se kana dvd merika virus kolane se oti aferoumeno disko valis ekini tin stigmi tsp prosekse ti tha grapseis sto dvd ego tha s elega na alakseis OS :P vale linux:P
-
gia na gini partition prepi na gini diamorfosi sklirou to partition den ine asfales o ios xtipaei k to partition analogos poso kalogramenos ine kolaei se olo to skliro
-
[Share] You know about Dual-boxing etc??
anath3ma replied to anath3ma's topic in General Discussion [English]
i hope to find it how to setup it its rly cool i have use 5 shamans and its very very very hardcore -
[Help] A Little Help About Choosing Char...
anath3ma replied to Stefoulis15's topic in General Discussion [English]
lol rogue dont called Daggeras its not the same Rogues can dual wield equip: swords ,fists ,maces ,daggers ,bows ,throws ,crossbows first of all u must set a mainhand slow lets say for combat spec slow main fast off-hand hemo spec the same thing as combat muti spec 2 slows dagger 1.9 - (2) why here 2 slows cos muti use 2 daggers to hit its licke backstab with both daggers so u need dmg on ur wepon and why not a fast offhand cos u are using shiv at start(skill for 70 lvl) that skill apply the poison of ur offhand to ur target dagger spec backstab etc slow main fast off-hand(for poison apply) also u got blind sprint evasion this can be very usefull for pvp or pve learn to use all your cooldowns and dont listen this noobs who say "if u use ur cd u are noob" they are dont know to play any way u got many skills and talents to use use ur mind make ur spec and lvl up after this follow other specs for pvp anyway i hope to have help u cos im play rogue 2 years + and ofc rogues its not the button class like everyone say u need to have skill at pvp(same with all classes) now u can choose every class u want i know everything for all classes i have play all this classes except paladin u can ask me everything i can give u info about some raids if u are reach 70 lvl and info about all dungeons also i can give u some cool addons and U/I to help u with ur quest ~AND DONT WASTE UR TIME TO MAKE ALLY.......... -
[Share] You know about Dual-boxing etc??
anath3ma replied to anath3ma's topic in General Discussion [English]
here is the link patch.exe included but nvm http://rapidshare.com/files/116352217/keyclone.rar.html also is set to run 3 or 5 wow clients i dont remember from C:\Program files\worldofwarcraft\wow.exe change it from setup -
[Help] Want to start playing WoW
anath3ma replied to senza.bau's topic in General Discussion [English]
screw private servers go buy gamecard, and account and go on official make a char make friends go for quests and raids or pvp use some guides for quests and professions and have fun but soon u gonna feel the blizzard make the wow sux more and more and more every new patch they screw everything i dont like wow anymore im playing from patch 1.12 before tbc i like this old days after expansion all sux hard and warlock is very op class for pvp at low lvl mages rogues etc can kill u but if u reatch 70 with sl/sl spec u can pwn every 1(not so easy rogues and huntards) also use affliction spec to lvl up maybe @ 51 use felguard dunno i dont have try it but i have hear its good spec u choose ~have fun in blizzards servers -
[Share] You know about Dual-boxing etc??
anath3ma replied to anath3ma's topic in General Discussion [English]
path.exe its clear(i m running linux so i dont care if its spy or whateva) and about rapidshare u must enter the Number/Leters with the Cat :P simple :P also if u want i can zip my and share it here ... ~Cheers -
Indigo kids ti paizei re paidia?Eisai kai si mipws ena?
anath3ma replied to MASTROPOS's topic in Off-Topics
57.45 alla mou fanike xazo....