ID:139904
 
Code:
mob
verb
Giant()
set category = "Jutsus"
set name = "Baika No Jutsu"
var/icon/I = new(usr.icon)
I.Scale(64,64)


Problem description:

alright issue is it either doesnt change the size OR lol 2 times im afraid it ended up shrinking the icon XD I had usr.icon=I there but I took it out due to it was the same thing with or without xD

I don't really understand what you're saying. When asking a question, take the time to make a detailed post with proper English if you want people to take the time to help you, and make your post title related to your issue!
In response to Darkjohn66
Darkjohn66 wrote:
I don't really understand what you're saying. When asking a question, take the time to make a detailed post with proper English if you want people to take the time to help you, and make your post title related to your issue!

Lmao dude what is not hard to understand fine ill make it simple this verb is supposed to increase the scale size of the Icon in other words make it bigger in game BUT when I click the verb nothing happens simple enough? xD sorry if Im coming across rudely but when you make posts such as yours I find them pointless My english was fine thats one thing Two if you dont understand my problem don't post a reply period I can wait for someone who comprehends the issue to reply with a helpful sugguestion

Back on point then: Test verb testing to increase size but the verb ISNT increasing icon size solution please?

Simple enough?
In response to DarkDevilBat
Is it suppose to do something like in MasterDan's GOA? Like your character gets bigger?, If so, you have to icon the double size. That's about all I know.
You're loading an icon file into an /icon object and you then make a change on it, but that's all you're doing. You're not actually using the altered icon for anything. You just created it and left it alone. What you want is to set the player's icon to the modified /icon object (this automatically takes care of converting it into an icon file and sending it).
Of course, this could be done better. One improvement is to pregenerate the scaled versions of the needed icons.
In response to RichardKW
RichardKW wrote:
Usr.icon=I
http://www.byond.com/developer/forum/?id=754360#754360


Richard I tested that. How exactly does it work? When I tried, all it did was freeze my game for a few seconds.