Jump to content

DexterMorgan

Active Members
  • Posts

    848
  • Joined

  • Last visited

Profile Information

  • Member Title
    My Member Title
  • Location
    Brooklyn NY
  • Interests
    Looking at myself in the mirror...

Recent Profile Visitors

999 profile views

DexterMorgan's Achievements

Universalist

Universalist (7/7)

0

Reputation

  1. I have no idea if someone did this before, but I was learning this at school, and decided to make one with autoit. Im going to create a whole GUI and even the NPER formula and make a whole thing with it for a project. ;// PMT EXAMPLE (How much you will pay per Month) $loanamount = 20000; Initial Loan Amount$20,000 $apr = 0.12 ;percent interest per year, NOT PER MONTH! $months = 15; How long until you pay all of it off $pmt = pmt($apr,$months,$loanamount);; payment per month msgbox(0,"Your Payment Per Month","If you pay "&$apr*100&"% APR, for "&$months&" months, on a $"&$loanamount&" loan, you will have to pay $"&$pmt[0]&" every month."&@CRLF&"This will end up costing you $"&$pmt[1]&" in interest costing you a total of $"&$pmt[2]) ;// PV EXAMPLE (How much of a Loan you can Afford) $pmt = 1442.475604; How much you can afford to pay per month $apr = 0.12 ;percent interest per year, NOT PER MONTH! $months = 15; How long do you want this loan $pv = pv($apr,$months,$pmt);; payment per month msgbox(0,"You can Afford","If you can pay $"&$pmt&" every month for "&$months&" months, at "&$apr*100&"% interest, you can afford a $"&$pv&" loan!") func pmt($apr,$months,$pv) $rate = $apr/12 $pmt1 = Round(abs($pv/((1-(1/(1+$rate)^$months))/$rate)),2) $totalpayment = round($pmt1*$months,2) $totalinterest = round($totalpayment - $pv,2) local $pmt[3] = [$pmt1,$totalinterest,$totalpayment] return $pmt EndFunc func pv($apr,$months,$pmt) $rate = $apr/12 return round(ABS($pmt*((1-(1+$rate)^-$months)/$rate)),2) EndFunc Those are the 2 formulas with examples If you dont understand something just by the code, if you run it it should make more sense. Or else just let me know ill explain it
  2. WinSetState ( "title", "text", flag ) flag would be @sw_hide
  3. it would be awesome if you can get a bunch of languages compatible with it.
  4. This reminds me of this http://www.titane.ca/igod/ real good job!
  5. This is great, ovbiously not as great as REShacker but, very very good start, keep it up and It will be one of the bes
  6. monoceres another great program
  7. Cool update
  8. It works good for me, but I dont search often.. I know where all my files are Thanks
  9. Wow, TehWhle you posted this excatly when I needed it I didnt read the whole topic, because I noticed a lot of code modifications Anyone wanna be my best friend and tell me which one is the best You will feel good that you helped a NeWb! lol, jk.. I can read Edit: Where are my manners THANKS!!
  10. Well, I've been working on IE functions for a while now, Last week I started making the IE Invisible like this _Iecreate('',0,0) Of course I Have the include and everything, The problem is that it is invisible for me, but when I go on my other computer, it is not invisible.. I want to know if there is 1) An error code that can tell me if the window is visible or not or 2) A code that can make it invisible.. I know this sounds very malicious But it isn't... Thank you for any help! dsfjlsdlkfjklsdjflkjsdkljflksdjklflsdjfklsdjfklsjdklfjsdlfjdjsfjsldjfklsdjfklsdjflksjdlkfjsdljfsdkjflsdjflkjsdlkfjlksdjfkljdsklfjklsdjfkljsdlkfjdklsjfklsdjflksdjflksdjklfjsdlkjflksdjflsdjflkjsdlfjsdljfkldsjflksdjflkdsjflkjfkljsdklfjdklsjfsdjfls dsfsdfsd fsdfsd fsd fsdfsdfsdfsdf sdfsd fsdfsd fsd fsdfsdfsdf sdfsd fsdfsdfsd f dasdasdsa das ds ad sad sa
  11. you probably didnt define $CMDlineRaw at the start of your script add this $CmdLineRaw = 'E:/" ; set this to what you need to define it to
  12. ehhem... jk, lol
  13. well, some windows have the same title, i.e - Firefox is always "Title of webiste" - Mozilla Firefox so you can use WinTitleMatchMode and then winsetstate("- Mozilla Firefox",@SW_hide) BUT--- If you are doing this with INternet explorer, You can use the IE functions to make it visible _iecreate()
×
×
  • Create New...