Search found 94 matches

by Eowul
29 Aug 2013 14:00
Forum: Web Client General Discussion
Topic: New Official Client Unveiled for Testing!
Replies: 32
Views: 11743

Re: New Official Client Unveiled for Testing!

Testing it out now, and it actually lets me connect from work :) Thing looks very good, but the map section doesn't seem to work. It is supposed to automap or something, or did I misunderstand that feature? It's the magic map from in game, so you will need to be in a magic map supported area. I wou...
by Eowul
28 Aug 2013 16:36
Forum: Web Client General Discussion
Topic: New Official Client Unveiled for Testing!
Replies: 32
Views: 11743

Re: New Official Client Unveiled for Testing!

For multiple commands, I personally prefer semicolon delimited over newlines ala: open chest;get all from chest;close chest Program with this is that you can no longer use the semicolon in your texts, which might lead to weird situations? Not sure how often it's used in normal play, but it's quite ...
by Eowul
27 Aug 2013 20:18
Forum: Web Client General Discussion
Topic: Safari
Replies: 2
Views: 1849

Re: Safari

Kiara wrote:The client doesnt work in Safari on Mac.

Works perfect in Chrome on Mac, but on Safari it doesnt.

I attached a screenshot of the problem!
Interesting, I actually developped this stuff on the mac, and for me it's working fine in Safari 6.0.5. What version are you using?
by Eowul
25 Aug 2013 14:48
Forum: Game - General
Topic: Imbuements issue (25 August, since resolved)
Replies: 3
Views: 2241

Re: WARNING! Don't log in. Imbuements seem bugged.

aye system is fucked up totally. I reported few bugs with imbue before arma, but it seems wizards ingored it or fix it in opposite way.... We always enjoy ignoring critical things, so yeah, that's the reason we didn't attend to it in time. Anyway, I restored whatever I could and dumped it near the ...
by Eowul
25 Aug 2013 12:54
Forum: Web Client Bugs and Feature Requests
Topic: Text Coloring
Replies: 23
Views: 10276

Re: Text Coloring

I think text() removes the html tags,not escape then. Then, if we put the result back into the html() function, you should be able to use spans and such ... I suppose we could add it as an optional 3rd argument. Added gwc.output.replace with searchValue, newValue and an optional [use html] argument...
by Eowul
25 Aug 2013 12:38
Forum: Web Client General Discussion
Topic: Changelog
Replies: 19
Views: 14338

Changelog

0.1.1 - August 25, 2013
* Added optional second argument to gwc.connection.send that enables resolving of aliases.
* Added new function gwc.output.replace
* Improved focus of input field
* Added connect / disconnect option
* Fixed layout issue in Firefox

0.1.0 - August 20, 2013
* Initial release
by Eowul
23 Aug 2013 13:39
Forum: Pictures
Topic: Official Character Portraits
Replies: 10
Views: 10122

Re: Official Character Portraits

Aristos wrote:What style is that from the list options?
This would be the colored finished pencil, portrait option.
by Eowul
23 Aug 2013 12:10
Forum: Pictures
Topic: Official Character Portraits
Replies: 10
Views: 10122

Re: Official Character Portraits

Denis does an amazing job, just had to show of my portrait of Eowul.
Image
by Eowul
23 Aug 2013 07:37
Forum: Web Client Bugs and Feature Requests
Topic: Text Coloring
Replies: 23
Views: 10276

Re: Text Coloring

I think you may be right, it is too abstracted. Maybe something closer to this? var src_str = gwc.output.getLine(); var pattern = new RegExp("(peculiar|unusual|exotic)", "i"); src_str = src_str.replace(pattern, "<span style=\"color:green\">$1</span>"); gwc.ou...
by Eowul
22 Aug 2013 11:41
Forum: Web Client Bugs and Feature Requests
Topic: Text Coloring
Replies: 23
Views: 10276

Re: Text Coloring

I'm not picturing it. What would it look like? In my ideal world I would be making calls such as: var pattern = new RegExp("(peculiar|unusual|exotic)", "i"); gwc.output.replace(pattern, "<span style=\"color:green\">$1</span>"); I think any wrapper around the ...