Jump to content

Gusis

Members
  • Posts

    6
  • Joined

  • Last visited

Gusis's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. maybe in new revision you save encrypted data in file. ex: ;before writing to file $EncryptText = _StringEncrypt(1,$data,"verylongsecretpassword",5) ;after reading from file $Decrypttext =_StringEncrypt(0,$data,"verylongsecretpassword",5)
  2. sorry for my english. i want code when user the clicks a link, the status will go to USER IS NAVIGATING you make similar? ... if $oIE.LocationURL <> $prevlink then $prevlink = $oIE.LocationURL GUICtrlSetData($label, "user navigating") endif ... or exist function for detect when user navigating?
  3. nice work what do you know when user navigating? (Status: User is navigating)
  4. try: (400+x)+[(800-(y+400))%800]*801 + 1
  5. i send sms only 1 sms for 1 village. have array with values 1. and then i see attack i decrease it. and if i have 0 dont send sms...
  6. slaughter good work! For LT server i use this function for notify then attack my villages. Sorry,my English no good. Func send($message) $oIE2 = _IECreate("http://www.sms4you.lt/", 0, 1,2000,0) $number ="your phone number"; ex. "+37062824700" _IELoadWait($oIE2,1000,30000) $GetSource = _IEDocReadHTML($oIE2) if (StringInStr($GetSource, 'Nemokamos')) Then TrayTip("","radau fraze", 0) $o1 = _IEFormGetObjByName($oIE2, "SMForm") $o2 = _IEFormElementGetObjByName($o1, "number") $o3 = _IEFormElementGetObjByName($o1, "num") $o4 = _IEFormElementGetObjByName($o1, "text") $o5 = _IEFormElementGetObjByName($o1, "submith12") _IEFormElementSetValue($o2, $number) _IEFormElementSetValue($o4, $message) _IEAction($o5, "click") EndIf $oIE2.document.close() EndFunc
×
×
  • Create New...