I just completed my MIPs assembly class and I have a suggestion for you: Don't use PC Spim!
I've used PC Spim, Mars, and Qemu and by far the Mars (Mips Assembler and Runtime Simulator) is the best. The editor is nice, it crashes ~a lot~ less, it allows you to set breakpoints, etc. I would consider one of the better MIPs emulators out there right now. It is provided free and open source by Missouri State University.
It comes as a .jar file so you can easily run it in windows/linux.

[Mars Mips Emulator]
Normally, an easy way to tell if an individual number is odd or even you could simply do a bitwise AND 1 with it, and if the result is 0 then the number is even. However, since we are looping through the numbers in a linear fashion we can simply add 2 like you did in your posted code.
One thing you want to note is when adding an immediate value, you should use "addi" or "addiu". You also said you wanted to put the result in register $r12 but this is not a valid MIPs register. Check out MIPs wikipedia link: MIPS - Register Usage.
I've edited your program to work, and it stores the final result in $t1 and it also prints it.
.text
.globl main
main:
li $t0, 0 # $t0 = loop counter
li $t1, 0 # $t1 = sum of even numbers
loop:
addi $t0, $t0, 2 # generating even numbers in register $t0
add $t1, $t1, $t0 # compute the sum
bne $t0, 100, loop # if t0 reached 100 then go to loop.
li $v0, 4
la $a0, result
syscall # print out "Sum = "
li $v0, 1
move $a0, $t1
syscall # print out actual sum
exit:
li $v0, 10 # terminate program run and
syscall # Exit
.data
result: .asciiz "Sum = "
After running this in Mars I get the following:
Sum = 2550
-- program is finished running --