Search found 9 matches

by spoofmanbob
Thu Nov 06, 2014 6:47 pm
Forum: Scripts & Packages
Topic: Who Windows
Replies: 3
Views: 4825

Re: Who Windows

I'm using that geyser template with Imperian. Just not sure on the how to get who information reliably.
by spoofmanbob
Wed Nov 05, 2014 11:53 pm
Forum: Scripts & Packages
Topic: Who Windows
Replies: 3
Views: 4825

Who Windows

Has anyone scripted a window for who's online, whos online in the city or whos on in your guild atm? What would be the best source of info for this, i dont see it in gmcp.
by spoofmanbob
Wed Oct 29, 2014 1:21 am
Forum: Help Forum
Topic: Room List
Replies: 6
Views: 4836

Re: Room List

Which trigger(s) are required to keep the list up to date?
by spoofmanbob
Tue Oct 28, 2014 8:08 pm
Forum: Help Forum
Topic: Room List
Replies: 6
Views: 4836

Re: Room List

This is what I'm using currently but it doesn't stay up to date.
Code: [show] | [select all] lua
function roomTracker()

local t = {}
for k,v in pairs(gmcp.Char.Items.List.items) do
  table.insert(t, v.name)
	GUI.Box6:setFontSize(10)
end

GUI.Box6:echo(table.concat(t, "<br>"))
end
by spoofmanbob
Tue Oct 28, 2014 7:30 pm
Forum: Scripts & Packages
Topic: Demonnic Chat + Geyser Template UI
Replies: 2
Views: 4615

Demonnic Chat + Geyser Template UI

I'm trying to adopt the demonnic chat to the wonderful geyser template ui. But I cant quite get it to fit. Here is a picture: http://imgur.com/RMw7aV7.png I modified the Demonnic code in these two places but am not that good with scripting yet to get it the other 10% of the way to the finish line. f...
by spoofmanbob
Mon Oct 27, 2014 8:29 pm
Forum: Scripts & Packages
Topic: Geyser UI Template
Replies: 120
Views: 173427

Re: Geyser UI Template

No effect
by spoofmanbob
Mon Oct 27, 2014 11:37 am
Forum: Scripts & Packages
Topic: Geyser UI Template
Replies: 120
Views: 173427

Re: Geyser UI Template

It looks centered by the looks of the toolbar on the bottom? Just no rooms.

http://imgur.com/8LZBFlJ.png
by spoofmanbob
Sat Oct 25, 2014 3:21 pm
Forum: Scripts & Packages
Topic: Geyser UI Template
Replies: 120
Views: 173427

Re: Geyser UI Template

Do you know why my mapper does not show a map, just the room name and id? http://imgur.com/RKU5ZmH.png My mapper script is just: GUI.Map_Container = Geyser.Container:new({ name = "GUI.Map_Container", x = 0, y = 0, width = "100%", height = "100%", },GUI.Box1) GUI.Mapper ...
by spoofmanbob
Sat Oct 25, 2014 4:51 am
Forum: Help Forum
Topic: Room List
Replies: 6
Views: 4836

Room List

I would like to know how to display what enemies are all in the room with me. I see the data in gmcp.Char as a list i'm just not sure how to go about it. Anyone have any examples i can work off?