In response to Stephen-San
please keep in mind that the forums are not a real-time chat room. people have lives, school, work, or families to deal with, and you cannot expect them to respond so quickly.

the standard rules for 'bumping' a post is: a) the last post has fallen off the front page of that section of the forum, and b) the post is over 24 hours old.

the weekend has ended, so most likely peopel have gone back to school or work. please be patient. hopefully someone will help in the next day or two.
In response to digitalmouse
use the force luke!
In response to GhostAnime
I now digital but without this code my game comes to a halt, Can't anyone figure it out.
In response to Falacy
Err...right....

Steph, please show us your updated code.

- GhostAnime
In response to GhostAnime
if("Create" in href_list)
var/icon/I = new
I.icon = usr.icon
for(var/icon/A in usr.overlays)
I.Blend(A,ICON_OVERLAY)
src << browse_rsc(icon(usr.icon),"User Icon.png")
src << browse({"
<html>
<body LINK="#ffffff" VLINK="#ffffff"><STYLE>BODY {background: #666666; color: white}</STYLE>
<center>
<center>
Creating A New Character</center>


Preview
<table width = "100%" style="border: 2px outset #dddddd;">
<tr BGCOLOR="#777777">
<td frame="above"><div align="center"></div></td>
</tr>
</table>

In response to Stephen-San
This is your problem here:
for(var/icon/A in usr.overlays)
I.Blend(A,ICON_OVERLAY)


What you want is:
for(var/A in usr.overlays)
I.Blend(A:icon,ICON_OVERLAY)
As I mentioned bvefore, you can not directly access the usr.overlays so you have to search through it, it goes in as a special format (A:type shows as /image but when searching using /icon/ or /image/, it doesn't work)

- GhostAnime
In response to GhostAnime
When I add the overlay to the mob and return to the page the image is still the same, the mob without the overlay.
In response to Stephen-San
When you "return" to the page, do you mean as in reopening or switching to the window?

- GhostAnime
In response to GhostAnime
Well I have a Topic link that when you like browses the exact same code as the create character button does soo its like re opening or re browsing
In response to Android Data
Oops! Error!

var/icon/I=new('blank.dmi') //a blank icon
for(var/A in underlays) I.Blend(icon(A:icon,A:icon_state,dir,1),ICON_OVERLAY)
I.Blend(icon(icon,icon_state,dir,1),ICON_OVERLAY)
for(var/A in overlays) I.Blend(icon(A:icon,A:icon_state,dir,1),ICON_OVERLAY)
src<<browse_rsc(I,"[src.ckey]_icon.png")
src<<browse({"
<html>
<body LINK="#ffffff" VLINK="#ffffff"><STYLE>BODY {background: #666666; color: white}</STYLE>
<center>
<center><b></b><br><b>Creating A New Character</b></center>
<hr>
Preview
<table width = "100%" style="border: 2px outset #dddddd;">
<tr BGCOLOR="#777777">
<td frame="above"><div align="center"><img src="
[src.ckey]_icon.png"></A></div></td>
</tr>
</table>"}
,"window=something;size=300x300")


I also changed it so the name is more unique. Names must be unique, since files will NOT be overwritten.
In response to Android Data
He forgot most of the usr., but :') I think I have a tear in my eye lol 3 Cheers to Anime and Android for getting my system up and running! I can finally return to the game! Yayness!

-Stephen-San
Page: 1 2