ID:268430
 
Oi...
mob 
var
Shirtr
Shirtb
Shirtg
Shirt = 'shirt.dmi'
proc
Login()

var/cred = input("How much red do you want in your shirt? (0,0,0 = White Aura, 255,255,255 = Black Aura)") as num
var/cgreen = input("How much green do you want in your shirt? (0,0,0 = White Aura, 255,255,255 = Black Aura)") as num
var/cblue = input("How much red do you want in your shirt? (0,0,0 = White Aura, 255,255,255 = Black Aura)") as num
src.Shirtr = cred
src.Shirtg = cgreen
src.Shirtb = cblue
Shirt += rgb(src.Shirtr,src.Shirtg,src.Shirtb)

That's my code, yet my problem is...
Slime Warrior.dm:6:error:'shirt.dmi':cannot find file
Slime Warrior.dm:6:error:= :expected a constant expression
Slime Warrior.dm:13:error:src.Shirtr:undefined var
Slime Warrior.dm:14:error:src.Shirtg:undefined var
Slime Warrior.dm:15:error:src.Shirtb:undefined var
Slime Warrior.dm:16:error:Shirt:undefined var
Slime Warrior.dm:16:error:src.Shirtr:undefined var
Slime Warrior.dm:16:error:src.Shirtg:undefined var
Slime Warrior.dm:16:error:src.Shirtb:undefined var

._. DM doesn't love me... *cries in a corner*
Hell Ramen wrote:
Oi...
mob 
> var
> Shirtr
> Shirtb
> Shirtg
> Shirt = 'shirt.dmi'
> proc
> Login()
>
> var/cred = input("How much red do you want in your shirt? (0,0,0 = White Aura, 255,255,255 = Black Aura)") as num
> var/cgreen = input("How much green do you want in your shirt? (0,0,0 = White Aura, 255,255,255 = Black Aura)") as num
> var/cblue = input("How much red do you want in your shirt? (0,0,0 = White Aura, 255,255,255 = Black Aura)") as num
> src.Shirtr = cred
> src.Shirtg = cgreen
> src.Shirtb = cblue
> Shirt += rgb(src.Shirtr,src.Shirtg,src.Shirtb)

That's my code, yet my problem is...
Slime Warrior.dm:6:error:'shirt.dmi':cannot find file
> Slime Warrior.dm:6:error:= :expected a constant expression
> Slime Warrior.dm:13:error:src.Shirtr:undefined var
> Slime Warrior.dm:14:error:src.Shirtg:undefined var
> Slime Warrior.dm:15:error:src.Shirtb:undefined var
> Slime Warrior.dm:16:error:Shirt:undefined var
> Slime Warrior.dm:16:error:src.Shirtr:undefined var
> Slime Warrior.dm:16:error:src.Shirtg:undefined var
> Slime Warrior.dm:16:error:src.Shirtb:undefined var

._. DM doesn't love me... *cries in a corner*

i'm no expert but try:

mob
Login()
//*insert code here*
In response to DeathAwaitsU
Thank you, that didn't work, but, it got me started, so, yet, when editted, it did work x_X. Well, I sound confusing. But, thanks!
In response to Hell Ramen
What didn't work with my code, could you show me?
In response to DeathAwaitsU
mob



var
Warriorr
Warriorb
Warriorg
Warrior = 'Warrior.dmi'

Login()
usr.name = copytext(name,1,15)
usr.name = input("What is your name, thine Warrior?","Thine's Name")
usr.icon = 'Warrior.dmi'
loc = locate(1,1,1)
var/cred = input("How much red do you want in your warrior? (0,0,0 = White Warrior, 255,255,255 = Black Warrior)") as num
var/cgreen = input("How much green do you want in your Warrior? (0,0,0 = White Warrior, 255,255,255 = Black Warrior)") as num
var/cblue = input("How much blue do you want in your Warrior? (0,0,0 = White Warrior, 255,255,255 = Black Warrior)") as num
src.Warriorr = cred
src.Warriorg = cgreen
src.Warriorb = cblue
Warrior += rgb(src.Warriorr,src.Warriorg,src.Warriorb)
src.overlays += src.Warrior

XD, I should make a short demo of this.
In response to Hell Ramen
I cant see any difference that would matter the code. All you've done is change shirt to Warrior and added it as an overlay to ur icon.

And i dont think it should be a demo.
In response to DeathAwaitsU
Me neither XD, but If it was heavily editted... plus, I had to make it Warrior so I could see it ._. it was so small.
In response to Hell Ramen
No, you shouldn't, because adding RGB isn't a good idea, because the effect it produces is completely different than actually adding color to something. You should multiply the color, and use a greyscale image.

And you shouldn't use usr in procs.