Jump to content

Xand3r

Active Members
  • Posts

    441
  • Joined

  • Last visited

About Xand3r

  • Birthday 04/05/1990

Profile Information

  • Member Title
    Aka TheMadman
  • Location
    Romania
  • WWW
    http://www.garena.com
  • Interests
    Fun and games

Recent Profile Visitors

795 profile views

Xand3r's Achievements

Universalist

Universalist (7/7)

0

Reputation

  1. $a is positive , @error is negative...#include<Date.au3> $a = _DateDiff("s" , _NowCalc() , "2284/06/19 12:11:48") SetError($a) MsgBox(0 , $a , @error)
  2. is there anything i can use in autoit like the c/c++ inline if? a==b?"yes":"no"; What i want to do is something like Execute('Msgbox(0 , "" , Random(0,1,1)?"Yes":"No")') P.S.: i need the execute and no i can't use "If" Edit: i found a way... not exactly what is was looking for but will do the work Execute('Msgbox(0 , "" , lif(Random(0,1,1) , "aa" , "bb"))') Func lif($cond , $ret , $ret2 = "") If $cond Then Return $ret Return $ret2 EndFunc
  3. $asdf = 'aaa bbb cc"c ddd eee' $as = StringRegExpReplaceCallback($asdf , "aaa|bbb|ccc" , "upper") MsgBox(0 ,"Callback?", $as) Func StringRegExpReplaceCallback($string , $pattern , $callback) Return StringReplace(Execute('"' & StringRegExpReplace(StringReplace($string , '"' , "\x22") , $pattern , StringFormat('" & %s("\0") & "' , $callback)) & '"') , "\x22" , '"') EndFunc Func upper($text) Return StringUpper($text) EndFunc This works just fine for my scripts
  4. try outputing some data from the script like for example a dot (".") every couple of seconds...
  5. the thing about tcp is that you can send data back and forth on the same socket so you don't need both TCPConnect() TCPAccept() in both scripts... one should be the server and another the client (one has TCPListen and TCPAccept and the other TCPConnect)
  6. the only real safe programs are the ones that run on your server and the client only has an interface to show the work done on the server (like WoW for example )
  7. i think he made a guy on his server and he wants to send it directly to his client answer: you can't.... you have to send the client instructions and the client must create the guy based on thoose instructions
  8. This is the fastest cracker i found so far barswf cuda(using nvidia cuda) 440 Mhashes/sec and it takes... 6.5 mil days to crack the 10 chars keyspace with full charspace(0aA~)
  9. python might be waiting for a @CRLF like c/c++ so try StdinWrite($Process,"Hello, Python." & @crlf)
  10. or you could just make it : #include <Misc.au3> While 1 If _IsPressed("4") Then Send("!t") Sleep(300) WEnd which is the same thing
  11. the only way of doing this afaik is to store the source somewhere and use @ScriptLineNumber in the Func $source_location = @ScriptFullPath $test = "testing" $mytest = "123" Debug($test) MsgBox(0 ,"" , Debug($mytest)) Func Debug($var,$line=@ScriptLineNumber) $read = FileReadLine($source_location , $line) $array = StringRegExp($read,"Debug\((.*?)\)",3) If Not IsArray($array) Then Return 0 ConsoleWrite($array[0] & " is '" & $var & "' on line " & $line & @CRLF) Return 1 EndFunc Output: $test is 'testing' on line 4 $mytest is '123' on line 6
  12. i've been using Yashied's Ikey for quite a while now
  13. not here... think of port forwarding as a mail service(envelopes and stamps... old school) no port forward means: you send a letter to someone's PO box(person X), the letter arrives in the destination postal office but the postman dosen't know who the box belongs to so person X dosen't know he has mail. port forwarding: if a letter comes to the post office to person X's PO box then the mailman forwards it to person X's home... or something like that :-"
  14. you should use tcp and not udp for that and also should use a size counter so you know how much of the data you have and when to stop
×
×
  • Create New...