You should have to select the area where the change would take place using the selection tool. I think this feature would be fairly easy to add, don't you?


You should have to select the area where the change would take place using the selection tool. I think this feature would be fairly easy to add, don't you?
? wat![]()
Fix this please.
i like :wub:Do you like the new design?
it's a treeI actually prefer it like it is now(in a list, not like Remere's)
ok, i do not like it anymore, since the tree is going to be too BIG, i prefer like this:i like :wub:
I'm not a good designer, if you can design, why not try and contribute?since the tree is going to be too BIG]
i don't think that u got what i wanted to say =/ what i mean is, if it is going to be a list/tree it will be a BIG list since we got so many sprites, but if it is going to be like on the image in my post, it will be nice since we will have 5 sprites per roll, got it?I'm not a good designer, if you can design, why not try and contribute?
i don't think that u got what i wanted to say =/ what i mean is, if it is going to be a list/tree it will be a BIG list since we got so many sprites, but if it is going to be like on the image in my post, it will be nice since we will have 5 sprites per roll, got it?![]()
And what he's saying is he's not a good designer, he wants someone to make it for him.
You are not onlineMessage me on MSN, Fallen.
So you design textually?Example is Monster chart in sig.
You are not online
So you design textually?![]()
Code:Statements shall always use the optional semicolon which shall have a space before and after. Comma delimited lists shall have a space after each comma. String concatenation double dots shall have a space before and after. Assignments involving string concatenations shall be enclosed in paranthesis. Horrid| doPlayerSendTextMessage(cid,MESSAGE_INFO_DESCR,"You got some "..variable..".") Better| doPlayerSendTextMessage(cid,MESSAGE_INFO_DESCR,"You got some "..variable.."."); Better| doPlayerSendTextMessage(cid,MESSAGE_INFO_DESCR,"You got some "..variable..".") ; Better| doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You got some "..variable..".") ; Better| doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You got some " .. variable .. ".") ; Right | doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, ("You got some " .. variable .. ".")) ; Maximal use of horizontal use shall be made, only deferring to elegance; (readability). Before | if (diffTime >= exhaustTime) then Before | setPlayerStorageValue(cid, storeValue, newExhaust) ; Before | return true ; Before | else Before | return false ; Before | end ; After | if (diffTime >= exhaustTime) then After | setPlayerStorageValue(cid, storeValue, newExhaust) ; After | return true ; else return false ; After | end ;