home *** CD-ROM | disk | FTP | other *** search
- Checksum of selection
- ; Copyrighted by ZoRtRaN - American Power
- ; Hey folkz! You've done a great job
- ; Use this cool plugin for the checksum
- ; of selection! Thanx for publishing ma
- ; stuff boyz! See ya later...
- [Initialize]
- Plugin = Checksum of selection
- Name = ZoRtRaN
- Version = 133
- Height = 2000
- Checked = No
-
- [GetData]
- ;Get selection
- VHowMany = SelNum (1)
-
- [SetData]
- ;Check if there IS a selection
- If not Selection Stop
- ;Hey guys - the following line is crap isn't it?
- VSum = 0
- Loop Counter from 1 to VHowMany step 1
- Vsum = Vsum + SelItem (Counter)
- End Loop
-
- [Output]
- ;Okay - let's print the results! (Easy)
- OUT = Checksum result is:
- OUT = Decimal @ Vsum
- OUT = Hex @ #Vsum
-
- [Stop]