ID:148797
 
\icon[usr.face][usr]: [html_encode(T)]

What do i add to make it bigger?
well... if you look at the \icon definition in the "Help On..." section of Dreammaker, it'll show that \icon is actually an HTML tag ( <img src tag to be precise ), just look at how they do that, and copy, and add in height="#" width="#" :D

In case you don't wanna look it up, here's what it ACTUALLY outputs for \icon[usr]

<IMG CLASS=icon SRC=\ref[usr.icon] ICONSTATE='[usr.icon_state]'>

Now, if you want to define the height and width... say... 32 (height) x 32 (width), you'd do the following:

<IMG CLASS=icon SRC=\ref[usr.icon] ICONSTATE='[usr.icon_state]' HEIGHT="32" WIDTH="32">


Hope this helps :)

-- Griswald --



:::EDIT::: Thanks lummox for reminding my about the HTML tags ;p
In response to Griswald
you can also do this with the client script

client/script = "<STYLE>BODY {background: black; color: white} IMG.icon{width:32;height:32}</STYLE>"


In response to Griswald
Since you're outputting raw HTML there, you should stick it in a <DM> tag so it'll show up on the forums.

Lummox JR