Showing results 1 to 25 of 37
Search took 0.00 seconds.
Search: Posts Made By: Syzgyn
Forum: Lua/XML Help 08-28-09, 11:32 PM
Replies: 2
Views: 3,555
Posted By Syzgyn
string.sub(GetCVar("realmList"),1,2) GetCVar("rea...

string.sub(GetCVar("realmList"),1,2)

GetCVar("realmList") will give you the login server, such as "us.logon.worldofwarcraft.com". eu for Europe, no idea what china or other places are, if not eu.
Forum: Wish List 06-13-09, 01:11 PM
Replies: 19
Views: 29,650
Posted By Syzgyn
I think most of us would be happy with just...

I think most of us would be happy with just IsQuestCompleted(id).
Forum: AddOn Search/Requests 11-22-08, 02:58 PM
Replies: 5
Views: 3,882
Posted By Syzgyn
This macro should work for what you want. /cast...

This macro should work for what you want.

/cast [help] [target=targettarget, help] Flash Heal; [harm] [target=targettarget, harm] Smite
Forum: General Authoring Discussion 11-18-08, 01:21 AM
Replies: 7
Views: 3,503
Posted By Syzgyn
First off, I would really recommend using a...

First off, I would really recommend using a different text editor for coding. I use Notepad++ and it's great, but anything is gonna be better than wordpad. Also, download Bugsack and Buggrabber from...
Forum: General Authoring Discussion 11-18-08, 12:10 AM
Replies: 7
Views: 3,503
Posted By Syzgyn
You don't have to use Ace to write addons, or...

You don't have to use Ace to write addons, or XML, for that matter.
Forum: AddOn Search/Requests 11-10-08, 12:53 PM
Replies: 7
Views: 4,949
Posted By Syzgyn
Not possible.

Not possible.
Forum: Chit-Chat 11-09-08, 06:09 PM
Replies: 25
Views: 13,116
Posted By Syzgyn
Thats my plan! I'm currently in disagreement...

Thats my plan!

I'm currently in disagreement with another friend of mine who is concerned we wont get copies, and wants to get to walmart at 9pm :P
Forum: WoWI's Pick(s) of the Week 10-21-08, 10:21 AM
Replies: 2
Views: 11,959
Posted By Syzgyn
I feel so special, Two of my addons in the same...

I feel so special, Two of my addons in the same Pick of the week. *swoon*
Forum: Chit-Chat 09-17-08, 12:41 PM
Replies: 25
Views: 13,645
Posted By Syzgyn
Quoted for truth!

Quoted for truth!
Forum: AddOn Help/Support 07-28-08, 08:42 AM
Replies: 6
Views: 4,030
Posted By Syzgyn
Not like I'm bias or anything, but Scorecard...

Not like I'm bias or anything, but Scorecard (http://www.wowinterface.com/downloads/info8754-Scorecard.html) does the same thing :P
Forum: News 07-20-08, 01:50 PM
Replies: 256
Views: 130,794
Posted By Syzgyn
Aha, I misunderstood. I thought that there was...

Aha, I misunderstood. I thought that there was going to be a cap on how many would go out at once. Thanks for clearing it up Seerah.
Forum: News 07-20-08, 12:05 PM
Replies: 256
Views: 130,794
Posted By Syzgyn
I was so giddy I was bouncing up and down when I...

I was so giddy I was bouncing up and down when I read the news. Thanks for the great opportunity. Any word on how many names get sent in with each batch?
Forum: Chit-Chat 04-08-07, 10:41 PM
Replies: 52
Views: 18,682
Posted By Syzgyn
I'd LOVE being able to pick which catagories of...

I'd LOVE being able to pick which catagories of addons make it on to your own list of updated addons. Seeing half of them be compilations is annoying.
Forum: AddOn Search/Requests 04-02-07, 03:21 PM
Replies: 11
Views: 4,421
Posted By Syzgyn
The problem is that none of that information is...

The problem is that none of that information is available to anyone but the player. So if you wanted to be able to see your whole guild's rep and keys and such, everyone in the guild would have to...
Forum: AddOn Search/Requests 04-02-07, 01:03 PM
Replies: 11
Views: 4,421
Posted By Syzgyn
http://wow.tachyonsix.com/armory/ That will give...

http://wow.tachyonsix.com/armory/

That will give you tools to show tradeskills, reputations, and keys, amongst other things.
Forum: AddOn Search/Requests 02-27-07, 06:02 PM
Replies: 11
Views: 4,409
Posted By Syzgyn
It's...

It's up
http://wowinterface.com/downloads/info6933-Bonuses.html
Forum: AddOn Search/Requests 02-26-07, 04:12 AM
Replies: 3
Views: 3,222
Posted By Syzgyn
#1 is assumedly possible, though I don't know how...

#1 is assumedly possible, though I don't know how to do it personally

#2 is not possible at all, nor is an altimiter.
Forum: AddOn Help/Support 02-25-07, 05:15 PM
Replies: 1
Views: 2,443
Posted By Syzgyn
Here's a function I use all the time in my addons...

Here's a function I use all the time in my addons to sort tables that dont have key values:


function Sorted(t, f)
local a = {}
for n in pairs(t) do table.insert(a, n) end
table.sort(a, f)
local...
Forum: AddOn Search/Requests 02-24-07, 01:08 PM
Replies: 2
Views: 3,868
Posted By Syzgyn
Wait for wowcensus to come back up?

Wait for wowcensus to come back up?
Forum: AddOn Search/Requests 02-24-07, 01:06 PM
Replies: 11
Views: 4,409
Posted By Syzgyn
I've got a mod in the works that does exactly...

I've got a mod in the works that does exactly this.
Here's a screenshot of an early version:
http://syzgyn.org/wow/Addons/BonusFrame/bonusframe0.1.jpg
Forum: General Authoring Discussion 01-21-07, 11:42 AM
Replies: 1
Views: 2,844
Posted By Syzgyn
Check out the Event "UNIT_COMBAT". It has...

Check out the Event "UNIT_COMBAT". It has everything you'd need to do that.
Forum: Lua/XML Help 01-20-07, 01:41 PM
Replies: 2
Views: 2,876
Posted By Syzgyn
format("%.2f", number) More info at the bottom...

format("%.2f", number)

More info at the bottom of the page here:
http://www.lua.org/pil/20.html
Forum: General Authoring Discussion 01-04-07, 01:35 AM
Replies: 1
Views: 3,262
Posted By Syzgyn
http://www.wowwiki.com/API_GetRaidTargetIndex

http://www.wowwiki.com/API_GetRaidTargetIndex
Forum: Lua/XML Help 12-25-06, 10:52 AM
Replies: 4
Views: 3,439
Posted By Syzgyn
I believe the problem is you're not adding [i]...

I believe the problem is you're not adding [i] in. Try this:

arrayName = {
[1]= {
["nick"]="nick 1",
["name"]="name 1",
["age"]="age 1",
},
[2]={
...
Forum: AddOn Search/Requests 12-24-06, 09:14 PM
Replies: 1
Views: 2,507
Posted By Syzgyn
There's no way to find out the amount of damage...

There's no way to find out the amount of damage absorbed if it's all absorbed. No possible, sorry :\
Showing results 1 to 25 of 37