| 00:03.34 | Athes | Hm...one more thing. |
| 00:03.45 | Athes | Is there a function that checks if a slot/spell is on cooldown? |
| 00:04.00 | Athes | I'm looking through WoWWiki but the closest i find is this : |
| 00:04.16 | Athes | GetActionCooldown(slot) - This returns the cooldown values of the specified action.. |
| 00:04.26 | Athes | I don't care of the value, I just want to know if it's on cooldown or not... |
| 00:04.44 | Fanook | GetSpellCooldown(spellID, spellnumTab) |
| 00:04.50 | Fanook | er, wait |
| 00:05.03 | Fanook | that'll work on any spell |
| 00:05.39 | Fanook | yeah, GetActionCooldown should do what you want |
| 00:06.44 | Fanook | if duration or enable is nonzero, it's still on cooldown |
| 00:07.43 | Athes | So how'd that look? if(GetACtionCooldown(slot)!=0) then blah ? |
| 00:08.33 | Athes | (never worked with a function that returns 3 values so no idea how the if should look either) |
| 00:08.43 | Fanook | ,duration=GetActionCooldown(slot);if(duration!=0) then <stuff> end |
| 00:09.02 | Fanook | putting the comma before duration tells lua that you don't care about the first return value |
| 00:09.11 | Fanook | iirc |
| 00:10.54 | Athes | hm...another If...? hm...that's gonna be interesting |
| 00:11.05 | Athes | I'm trying to fit it inside this if : |
| 00:11.12 | Athes | if (UnitExists("target") and IsActionInRange(slot)==1 and UnitReaction("target","player")<5) |
| 00:11.34 | Athes | So ,duration=GetActionCooldown(slot) Should be before the If(UnitExists.... ) , right? |
| 00:11.41 | Fanook | right |
| 00:12.00 | Athes | *sigh* I hate lua! :))) |
| 00:12.17 | Kolth | LUA is about as easy as coding gets. |
| 00:12.19 | Fanook | heh, it makes sense once you get used to the quirks |
| 00:15.31 | Fanook | at least wowiki's a good resource for the lua part, i still have no idea how the <frame>/<frames> tags layering should be in the xml |
| 00:18.22 | Athes | http://rafb.net/paste/results/ShYs7f90.html - This is how the line looks right now, and it tells me there's something expected at ! |
| 00:18.33 | Fanook | oh! oh! |
| 00:18.43 | Fanook | lua's "not equals" operator is ~= |
| 00:18.53 | Athes | ! :o Thanks! :) |
| 00:18.54 | Fanook | and not != like every other language out there |
| 00:18.59 | Athes | hehe |
| 00:19.02 | Cide | Cairenn! you are free to code my XML <3 thx |
| 00:19.09 | Cairenn | heh |
| 00:19.27 | Cairenn | xml is easy, it's lua that sucks |
| 00:19.31 | Cide | it's easy |
| 00:19.36 | Cide | but god it's boring |
| 00:19.39 | Cide | and time consuming |
| 00:19.40 | Fanook|WoW | lua is easy, xml sucks |
| 00:19.53 | Fanook|WoW | or at least xml without proper documentation sucks |
| 00:20.00 | Cairenn | http://www.w3schools.com/ |
| 00:20.06 | AnduinLothar | no docs is half the fun |
| 00:20.18 | Fanook|WoW | Anduin: pthhhbt |
| 00:20.25 | Athes | Weird.Now the macro dows nothing..... |
| 00:20.29 | Athes | *Does |
| 00:20.50 | Athes | Oh and, I removed the , infront of ,duration since it was giving an error... |
| 00:21.06 | Cide | XML is easy but it takes way longer to get something to look good than it takes to do something productive in LUA |
| 00:21.21 | Fanook|WoW | try changing the ~= to == |
| 00:22.00 | Fanook|WoW | not that should fix it or anything |
| 00:22.17 | Athes | Yep!:) |
| 00:22.23 | Athes | Works like a charm now! :) |
| 00:22.27 | Athes | <3 Fanook ^.^ |
| 00:22.34 | Fanook|WoW | hmmm, need to check the wiki docs on that function then |
| 00:22.43 | Fanook|WoW | er, no we dont |
| 00:22.56 | Fanook|WoW | nm |
| 00:23.16 | Athes | :) |
| 00:23.42 | Fanook|WoW | nonzero return = cooldown active, duh :P |
| 00:26.18 | Athes | heh |
| 00:28.25 | *** join/#wowi-lounge Beladona (n=Beladona@nlsngabas01-pool8-a7.nlsnga.tds.net) |
| 00:28.25 | *** mode/#WoWI-lounge [+o Beladona] by ChanServ |
| 00:30.27 | Fanook|WoW | what's the script command to toggle attack? /attack? |
| 00:30.41 | Athes | Checking |
| 00:31.01 | Athes | AttackTarget() |
| 00:31.15 | Athes | Btw, question about the macro - Found a problem with 1 seal. |
| 00:31.26 | Athes | Basically all seals have ranks 1, 2, 3, blah blah |
| 00:31.35 | Athes | However, Seal of Justice has no rank. So i don't know to judge this |
| 00:32.11 | Fanook|WoW | well, if you always want to cast the highest rank seal, i think you can just leave off the rank and it'll cast the highest one |
| 00:33.47 | Athes | Leave it off in the function itself/ |
| 00:33.48 | Athes | ? |
| 00:34.01 | Athes | or upon requesting the function within wow? |
| 00:34.03 | Fanook|WoW | off the string you pass to CastSpellByName |
| 00:34.09 | Athes | ah |
| 00:34.40 | Fanook|WoW | i know i read something about casting the highest rank somewhere, but for the life of me, i cant find it anymore |
| 00:36.11 | GenNMX | Fanook: Yes, it's new in 1.8. You can now just do: CastSpellByName("Mark of the Wild") and it will cast your highest rank Mark of the Wild. Not smart enough to determine if the player can receive that level or not, unfortunately. |
| 00:36.39 | GenNMX | Same with /cast Mark of the Wild |
| 00:36.53 | Athes | Awesome. Thanks :) |
| 00:38.25 | *** join/#wowi-lounge pagefault (i=pagefaul@Toronto-HSE-ppp3858290.sympatico.ca) |
| 00:43.30 | *** join/#wowi-lounge MentalPower (n=chatzill@host-70-45-80-48.onelinkpr.net) |
| 00:46.55 | ToastTheif | Industrail, you here? |
| 01:27.29 | pagefault | a shaman wearing dreadmist |
| 01:27.31 | pagefault | what a waste |
| 01:33.07 | *** join/#wowi-lounge Parak (n=profi@user-12hdr8d.cable.mindspring.com) |
| 01:53.33 | *** join/#wowi-lounge norgs|Sleeps (n=chatzill@CPE-139-168-168-13.qld.bigpond.net.au) |
| 01:54.32 | *** join/#wowi-lounge ToastTheif (i=ToastThe@24-177-164-255.dhcp.mrqt.mi.charter.com) |
| 02:42.51 | *** part/#wowi-lounge Beladona (n=Beladona@nlsngabas01-pool8-a7.nlsnga.tds.net) |
| 02:53.51 | SP|Sorren | bleh, is there any way to lock the windowed mode so that you cant drag the edges? |
| 02:54.09 | SP|Sorren | nothing worse than trying to hit a key and accidently dragging the window edge causing 20 seconds of lag! |
| 03:00.01 | Fanook|WoW | when overclocking goes wrong: http://video.google.com/videoplay?docid=5393904704265757054 |
| 03:08.17 | End | just wrote a macro to summon random pets :P |
| 03:08.49 | Guillotine | i wrote a macro to play russian roulette |
| 03:08.55 | End | o_O |
| 03:09.15 | Guillotine | <PROTECTED> |
| 03:09.22 | Guillotine | :) |
| 03:10.03 | Guillotine | im just that amazing |
| 03:13.00 | Cairenn|afk | Kaelten: |
| 03:13.00 | Kaelten | Hey gujys |
| 03:13.07 | Kaelten | End, you still around bro? |
| 03:13.11 | Cairenn|afk | input on the thread in the staff forum, please, when you get the chance |
| 03:13.12 | End | yes |
| 03:13.48 | Kaelten | cool |
| 03:14.04 | Kaelten | well now I'm trying to install trac |
| 03:14.12 | Kaelten | and looks like I'm in dependency hell. |
| 03:14.15 | End | :X |
| 03:14.26 | End | you probably need to rebuild subversion |
| 03:14.43 | Kaelten | looks like I might.... |
| 03:14.43 | End | for the python bindings |
| 03:14.43 | Kaelten | which I didn't in the first place... |
| 03:14.43 | Kaelten | damnit |
| 03:15.03 | End | typing python and then import svn |
| 03:15.06 | Kaelten | oh and if I upgrade to apache2 I cut off my right arm ( my web admin tools) |
| 03:15.08 | End | what does that do? |
| 03:15.13 | End | ouch |
| 03:15.48 | Kaelten | well. Apache2 breaks cpanel/whm |
| 03:15.54 | End | hrrmm |
| 03:16.01 | End | well, you could run both at the same time... |
| 03:16.12 | Kaelten | and the developer of cpanel/whm hasn't got support still, and its been two years. |
| 03:16.31 | Kaelten | would break things and bog down the server anyway. |
| 03:16.55 | Kaelten | I can run svnserve in the enterm, or maybe switch over to plesk, which isn't as good feature wise but at least won't die on apache2 |
| 03:17.21 | Kaelten | well my first conflict with trac is that I need to update python |
| 03:18.43 | End | hmm |
| 03:19.43 | Cairenn|afk | daaaamn ... ideas you wish you'd thought of first ... http://news.yahoo.com/s/nm/20051229/ts_nm/homepage_dc;_ylt=AiWMyp.M5u4pMcKRcwU4m2ys0NUE;_ylu=X3oDMTA3ODdxdHBhBHNlYwM5NjQ- |
| 03:20.12 | Kaelten | ya found that a few weeks ago |
| 03:20.17 | Kaelten | pretty ingenous really |
| 03:25.01 | Cairenn|afk | yeah, well, channel like this and it hadn't been discussed, of course I linked it :p |
| 03:28.33 | Kaelten | hehe |
| 03:28.44 | Kaelten | well it looks like it may be time to switch over to a new control panel |
| 03:28.50 | Kaelten | cpanel is going to hell by the sounds of it |
| 03:29.36 | Kaelten | which means I may have to reinstall all my sites |
| 03:29.37 | Kaelten | arg |
| 03:42.41 | *** join/#wowi-lounge Parak (n=profi@user-12hdr8d.cable.mindspring.com) |
| 03:48.59 | Kaelten | I'm pretty pissed at them too kolth |
| 03:49.13 | Kaelten | I'm looking at switching over to plesk 7.5 reloaded |
| 03:50.12 | AnduinLothar | cpanel? |
| 04:11.52 | *** join/#wowi-lounge KudaneWOWI (n=Kudane@ip72-194-83-209.oc.oc.cox.net) |
| 04:11.53 | *** join/#wowi-lounge Hexarobi (i=Hexarobi@68-191-209-132.dhcp.dntn.tx.charter.com) |
| 04:11.53 | *** join/#wowi-lounge Parak (n=profi@user-12hdr8d.cable.mindspring.com) |
| 04:11.53 | *** join/#wowi-lounge norgs|Sleeps (n=chatzill@CPE-139-168-168-13.qld.bigpond.net.au) [NETSPLIT VICTIM] |
| 04:11.53 | *** join/#wowi-lounge pagefault (i=pagefaul@Toronto-HSE-ppp3858290.sympatico.ca) [NETSPLIT VICTIM] |
| 04:11.53 | *** join/#wowi-lounge Codayus (n=cody@chaos.net.nz) |
| 04:11.53 | *** join/#wowi-lounge Cide (i=Cide@81-226-233-223-no60.tbcn.telia.com) [NETSPLIT VICTIM] |
| 04:11.53 | *** join/#wowi-lounge SP|Sorren (n=astrayca@66-215-83-80.dhcp.psdn.ca.charter.com) [NETSPLIT VICTIM] |
| 04:11.53 | *** join/#wowi-lounge EraphineDisco (n=Eraphine@cpe-24-59-106-252.twcny.res.rr.com) |
| 04:11.53 | *** join/#wowi-lounge krka (i=krka@c80-216-103-22.cm-upc.chello.se) [NETSPLIT VICTIM] |
| 04:11.53 | *** join/#wowi-lounge Ktron (n=Ktron@c-24-128-172-211.hsd1.nh.comcast.net) [NETSPLIT VICTIM] |
| 04:11.53 | *** join/#wowi-lounge Maldivia (n=the_real@62.61.134.59.generic-hostname.arrownet.dk) [NETSPLIT VICTIM] |
| 04:11.53 | *** join/#wowi-lounge Guillotine (n=Guilloti@63.203.120.57) [NETSPLIT VICTIM] |
| 04:11.53 | *** join/#wowi-lounge Kaelten (n=Kaelten@pcp04349492pcs.mobilh01.al.comcast.net) |
| 04:11.53 | *** join/#wowi-lounge sarf|sleep (n=fnordsar@ce01949-p11-odals6.cenara.com) [NETSPLIT VICTIM] |
| 04:11.53 | *** join/#wowi-lounge AnduinLothar (n=KarlKFI@adsl-67-127-165-108.dsl.irvnca.pacbell.net) [NETSPLIT VICTIM] |
| 04:11.53 | *** join/#wowi-lounge dukeku (n=dukeku@c-67-160-162-146.hsd1.or.comcast.net) [NETSPLIT VICTIM] |
| 04:11.53 | *** join/#wowi-lounge Fanook|WoW (i=Pegnose@69-168-180-167.clvdoh.adelphia.net) [NETSPLIT VICTIM] |
| 04:11.53 | *** join/#wowi-lounge ScytheBlade1 (n=Death@about/pxe/ScytheBlade1) |
| 04:11.54 | *** join/#wowi-lounge Kiliek (i=wwarneck@stfu.mpls.mn.us) [NETSPLIT VICTIM] |
| 04:11.54 | *** join/#wowi-lounge Cairenn|afk (n=Cairenn@CPE001217452e29-CM014500004571.cpe.net.cable.rogers.com) |
| 04:11.54 | *** join/#wowi-lounge Goutetsu (n=ethos@cpe-24-242-97-20.sport.res.rr.com) [NETSPLIT VICTIM] |
| 04:11.54 | *** join/#wowi-lounge kremonte (n=help@ool-18bba4ea.dyn.optonline.net) [NETSPLIT VICTIM] |
| 04:11.55 | *** join/#wowi-lounge Kolth (n=amoeba@206.174.74.130) [NETSPLIT VICTIM] |
| 04:11.55 | *** join/#wowi-lounge GenNMX (n=generalm@pcp0011052198pcs.longhl01.md.comcast.net) |
| 04:11.55 | *** join/#wowi-lounge oxman (n=Bouh@ns32161.ovh.net) [NETSPLIT VICTIM] |
| 04:11.55 | *** join/#wowi-lounge Morq (n=morquan@24.197.195.41) [NETSPLIT VICTIM] |
| 04:11.55 | *** join/#wowi-lounge groll (n=hoho@62.119.159.41) [NETSPLIT VICTIM] |
| 04:11.55 | *** join/#wowi-lounge Ghent_ (i=ghent@fangorn.starshadow.com) [NETSPLIT VICTIM] |
| 04:11.55 | *** join/#wowi-lounge [Matryx] (n=cs99gcs@horus.matryx.org.uk) |
| 04:11.55 | *** join/#wowi-lounge End (n=end@c-67-161-159-86.hsd1.co.comcast.net) [NETSPLIT VICTIM] |
| 04:11.55 | *** join/#wowi-lounge ChanServ (ChanServ@services.) |
| 04:11.55 | *** mode/#WoWI-lounge [+oooo KudaneWOWI Kaelten Cairenn|afk ChanServ] by irc.freenode.net |
| 04:11.55 | *** join/#wowi-lounge Tain (i=Shrubber@c-66-31-196-19.hsd1.ma.comcast.net) |
| 04:15.30 | Kaelten | anyone know how to check for which version of tcl you have installed? |
| 04:17.32 | Kolth | Use 'info patchlevel' |
| 04:19.17 | Kaelten | ok that didn't give me anything |
| 04:21.18 | GenNMX | whereis tcl |
| 04:21.29 | GenNMX | Should find the libraries, they'll have version numbers. |
| 04:21.39 | GenNMX | exqample: /usr/lib/tcl8.4 |
| 04:21.48 | GenNMX | s/exqample/example/ |
| 04:21.51 | Kaelten | ya I just need to know which 8.4 is it |
| 04:22.09 | Kaelten | they're up to 8.4.11 and I need to know which one it is |
| 04:22.19 | GenNMX | Ah, good point |
| 04:22.53 | Kolth | Kael, try going to /usr/local/include and grepping 'VERSION' from tcl.h? |
| 04:24.24 | Kaelten | what would be the grep command? |
| 04:24.31 | Kolth | I don't know -- that's from Google. |
| 04:24.36 | Kaelten | lol |
| 04:24.41 | Kolth | grep VERSION tcl.h |
| 04:24.49 | Kolth | My Linux experience is limited at best. |
| 04:25.02 | Kolth | I stopped when my ATI card didn't get 3d-accel |
| 04:25.09 | Kaelten | arg, it just says 8.4...... |
| 04:25.20 | GenNMX | grep searches for lines which contain the given substring and only shows those. |
| 04:27.13 | Kaelten | all I can find is 8.4. |
| 04:28.01 | GenNMX | for files in /usr/lib/tcl8.4/*; do grep "8.4." $files; done |
| 04:28.06 | GenNMX | That should give you a hint. |
| 04:31.24 | GenNMX | Kael, what distro are you running? |
| 04:32.03 | GenNMX | You couldn't have downloaded tcl from source, since then you would obviously know the minor version. So you probably let it get installed as some dependency, right? |
| 04:32.18 | GenNMX | Your package management system should be able to tell you the full version number installed. |
| 04:32.44 | Kaelten | well yes no kinda |
| 04:32.48 | Kaelten | this has been hellish |
| 04:33.30 | Kaelten | cpanel is stuck using way out of date stuff... and up2date doesn't recognize the kernel |
| 04:33.40 | Kaelten | I did install it but I don't remember the number or where exactly I got it from. |
| 04:34.00 | GenNMX | Up2date...I hope not Redhat9! |
| 04:34.15 | Kaelten | I think that this server did start off as redhat |
| 04:34.37 | Kaelten | since the default db4 that comes with it has posix locking but the special kernal my host is using doesn't. |
| 04:34.39 | GenNMX | Up2date would mean it's either Red Hat Enterprise, Fedora Core, or Red Hat 9. |
| 04:35.16 | Kaelten | yaye...... :S |
| 04:35.27 | Kaelten | well this is what I need to do, I need to get python 2.4 installed |
| 04:35.29 | GenNMX | Red Hat 9 was the last "free" Red Hat before it was merged with Fedora Core. It had a 2.1 kernel, I believe. |
| 04:35.34 | Kaelten | is there an easier way? |
| 04:35.58 | Kaelten | the kernel isn't the regular kernel it was developed by swsoft for VPS technology. |
| 04:36.44 | GenNMX | OK, you downloaded the RPM / Source yourself, right? So it's probably still somewhere. |
| 04:36.53 | GenNMX | updatedb && locate tcl*.rpm |
| 04:37.23 | GenNMX | updatedb && locate tcl*.rpm && locate tcl*.tgz && locate tcl*.gz && locate tcl*.bz2 |
| 04:37.41 | Kaelten | updatedb is running |
| 04:37.48 | Kaelten | does the && do something in linux? |
| 04:38.19 | GenNMX | Those are common archives, the first being RPM, a Red Hat package. |
| 04:38.35 | GenNMX | && only executes the next command if the previous suceeded |
| 04:38.48 | Kaelten | cool |
| 04:39.04 | GenNMX | And calling updatedb manually just makes sure the locate database is up-to-date |
| 04:39.15 | Kaelten | right |
| 04:39.38 | Kaelten | I've probably fubared all this up |
| 04:39.47 | Kaelten | something I Read makes me think I'm going to have to rebuild subversion |
| 04:39.59 | Kaelten | I wasted two days getting db4 to run when I didn't need too. |
| 04:40.03 | Kaelten | its just been a great trip |
| 04:40.36 | Kaelten | I'm debating switching over to plesk as well so I can upgrade to apache2 |
| 04:40.40 | GenNMX | Ah Kaelten, but think of all the things you are learning! We all have our "pratt falls" when it comes to computers. |
| 04:41.02 | Kaelten | oh ya, next time I want to install subversion I'll know better. |
| 04:41.07 | Kaelten | I won't deal with db4 |
| 04:41.39 | GenNMX | I remember my first time setting up MySQL from stratch on a FreeBSD machine. It still doesn't run quite right... |
| 04:41.45 | Kaelten | lol |
| 04:41.56 | Kaelten | I've gotten php mysql and apache2 to run on windows before |
| 04:42.01 | Kaelten | I swear thats much easier |
| 04:42.21 | Kaelten | its kinda neat but at the same time its unnearving how you're expected to build everything from source |
| 04:42.33 | Kaelten | and I'm still wondering if there are some good tools that can manage all this for you |
| 04:42.39 | *** part/#wowi-lounge Hexarobi (i=Hexarobi@68-191-209-132.dhcp.dntn.tx.charter.com) |
| 04:43.08 | GenNMX | Kaelten, Kaelten...yes, Windows can seem easier. Just like how VBScript seems like it would trump Lua. But we know better, eh? |
| 04:43.56 | Kaelten | well when you get down to it a lot of things are easier on windows and thats why linux isn't as well accepted by the masses of people out there that don't know anything about computers |
| 04:44.07 | Kaelten | I like the hints of things I'm learning in linux, but its a lot to take in all at once. |
| 04:44.13 | GenNMX | Kaelten, if this used to be a Red Hat system, then why aren't you using its package management system? |
| 04:44.23 | Kaelten | you mean up2date? |
| 04:44.27 | GenNMX | No, RPM. |
| 04:44.51 | Kaelten | I only know how to do a few things for it |
| 04:44.57 | Kaelten | rpm -i -rebuild -e |
| 04:45.09 | Kaelten | which I have used a decent amount |
| 04:45.22 | GenNMX | RPM tries to do everything for you -- it handles building from source, or just installing binaries, and sets up stuff with its own custom "default" configuration. If you're missing a dependency, it'll tell you, or if you have a conflict, it'll tell you. |
| 04:46.27 | GenNMX | Building everything from source defeats the purpose of using a distro with a package based management system. It's the "Add/Remove Programs" and "C:\Program Files" of Windows, to make a bad analogy. |
| 04:46.48 | GenNMX | RPM even has its own Registry, like Windows. |
| 04:47.45 | GenNMX | http://rpmfind.net/ |
| 04:48.22 | Kaelten | ya rpmfind.net is confusing as all hell |
| 04:48.23 | Kaelten | hehe |
| 04:48.38 | Kaelten | each one seems to have its own set of dependencies |
| 04:49.05 | GenNMX | Yes, and those are required dependencies for the source. So? |
| 04:49.36 | Kaelten | hehe, it is still confusing. I'm having to do all this over ssh via bash too, which is a first for me. |
| 04:49.41 | Kaelten | two days ago I know shit about linux |
| 04:49.43 | GenNMX | Many times it's best just to download the file and try installing it. The install will fail if it doesn't meet all of the dependencies. |
| 04:50.13 | GenNMX | Wait, who's computer is this? |
| 04:50.25 | Kaelten | its my webserver |
| 04:50.37 | Kaelten | I have root access. |
| 04:50.45 | GenNMX | OK, so you're leasing this webserver? |
| 04:50.49 | Kaelten | yep |
| 04:51.20 | GenNMX | And the lease administrator demands you use their custom kernel and distro? |
| 04:51.32 | Kaelten | well they demand their custom kernel |
| 04:52.17 | Kaelten | what does -a do? in rpm? |
| 04:52.19 | GenNMX | But you can put whatever distro you want on it? |
| 04:52.32 | GenNMX | man rpm ;) |
| 04:52.38 | Kaelten | well I imagine I could try, but I don't think it would be worth it all in all. |
| 04:54.00 | GenNMX | Well, Gentoo, Debian, or Fedora Core would be a heck of a lot easier to work with then building everything by source. Their package management system allows for neat tricks like trying to download what dependencies you need automatically from their repositories. |
| 04:54.24 | Kaelten | ya, cpanel has something like that but its very limited. |
| 04:54.36 | GenNMX | I like Debian myself. |
| 04:54.44 | GenNMX | I thought cpanel was a web admin tool and not a distro? |
| 04:54.55 | Kaelten | it is a web admin tool |
| 04:55.15 | Kaelten | but it contains some utils for helping keep software up tod ate and will install out of a list of rpms |
| 04:55.48 | Kaelten | but the list is kinda limited, and I don't really have options to update thigns. |
| 04:56.43 | Kaelten | all in all I'm trying to figure out the best way to do this and I'm confused I guess.... |
| 04:56.49 | Kaelten | I know what my goals are but its being a pain to get there. |
| 04:57.28 | GenNMX | Yeah, I definately know how that is. |
| 04:57.55 | Kaelten | I want to have subversion and trac installed |
| 04:58.06 | Kaelten | along side the other standard webserver things |
| 05:23.31 | *** join/#wowi-lounge futrtrubl (n=not@port0185-aaw-adsl.cwjamaica.com) |
| 05:52.00 | Kaelten | I hate cpanel |
| 06:00.04 | *** join/#wowi-lounge Depherios (n=Deph@67.189.88.161) |
| 06:24.32 | *** part/#wowi-lounge Ktron (n=Ktron@c-24-128-172-211.hsd1.nh.comcast.net) |
| 06:44.53 | Depherios | oh yay, now I know TWO ways to make a simple bot in WoW |
| 06:50.24 | AnduinLothar | applescript |
| 06:50.47 | *** join/#wowi-lounge Tuatara (n=chatzill@d142-59-67-40.abhsia.telus.net) |
| 07:19.27 | Guillotine | uh oh Depherios. dare I ask? |
| 07:42.35 | Depherios | oh sorry |
| 07:42.51 | Depherios | color checks, and now using the ability to link out to www.worldofwarcraft.com/whatever |
| 07:44.20 | Depherios | http://forums.worldofwarcraft.com/thread.aspx?fn=wow-interface-customization&t=283881&s=new&tmp=1#new <-- linking out to PHP would let you send out quite a bit of data, you'd have to re-enter the program... but you could still make spambots, mailbots, AH bots, or things like that :P |
| 07:46.34 | Depherios | ugh, no compy that can play wow, and only one monitor (which is why I'm not paying close enough attention here) silly laptop |
| 08:00.01 | *** join/#wowi-lounge Kremonte_ (n=help@ool-18bba4ea.dyn.optonline.net) |
| 08:25.14 | *** join/#wowi-lounge Ktron (n=Ktron@c-24-128-172-211.hsd1.nh.comcast.net) |
| 08:25.16 | Ktron | bleh |
| 08:25.21 | Ktron | missed when I got knocked off |
| 08:25.32 | Ktron | time to sleep for me |
| 08:25.32 | Depherios | uh *scrolls up* |
| 08:25.34 | Ktron | night everyone |
| 08:25.42 | Depherios | haven't missed much |
| 08:25.45 | Depherios | lol |
| 08:25.47 | Depherios | G'night |
| 08:32.18 | *** join/#wowi-lounge id` (n=Industri@gateway.is.remotion.nl) |
| 08:32.39 | id` | morning |
| 08:38.43 | Kolth | morning |
| 08:39.23 | Kolth | What's your new site? I wanna steal some code! :) |
| 08:42.54 | id` | ha ha, :-) |
| 08:43.03 | id` | http://digigen.nl/~Industrial |
| 08:43.56 | id` | document.getElementById('some_tag_with_id').style.display='none' |
| 08:44.00 | id` | gotta love that |
| 08:49.25 | Depherios | melee only has 3 Es, if I recall correctly.... |
| 08:49.30 | Depherios | ~spell melee |
| 08:52.41 | *** join/#wowi-lounge purl_ (i=ibot@pdpc/supporter/active/TimRiker/bot/apt) |
| 08:52.41 | *** topic/#wowi-lounge is This channel is for dev discussion only. Be respectful. No spamming the bot, and no bothering Slouken about work. Get along. Have fun. |
| 08:52.45 | Depherios | so far, I have: made a winamp playlist... read even more wowwiki API stuff... and posted on way too many forums |
| 08:53.24 | Depherios | now... I'm bored enough to consider reading friend's LJs... maybe I should just go to bed |
| 08:54.16 | id` | oh i thoughtt maybe it was time for work |
| 08:54.20 | id` | :P |
| 08:54.35 | id` | but i guess i know myself too good |
| 08:54.37 | Depherios | lol |
| 08:55.10 | Depherios | I'm stuck on my laptop... no games, no wow... well... no games I want to play xD |
| 08:55.23 | id` | go-to-bed |
| 08:55.33 | id` | i only have a laptop |
| 08:55.36 | Depherios | but it's only 1am |
| 08:55.45 | id` | and thursday? |
| 08:55.49 | id` | i eman friday |
| 08:55.52 | id` | mean* |
| 08:55.55 | Depherios | ~today |
| 08:55.56 | purl | Friday sucks, because it should be the weekend, but you're stuck working anyway. |
| 08:56.03 | id` | well then |
| 08:56.07 | id` | work in a few hours |
| 08:56.07 | Depherios | I don't work today.... oh wait... yes... yes I do |
| 08:56.16 | Depherios | at 4pm XD |
| 08:56.19 | id` | nn Cairenn|sleep ! |
| 08:56.28 | id` | Depherios: :o |
| 08:56.29 | Cairenn|sleep | night guys |
| 08:56.35 | Depherios | G'nighter |
| 08:58.47 | Depherios | id: yay retail? |
| 08:59.55 | id` | retail? |
| 08:59.57 | id` | yay:? |
| 09:00.17 | id` | bah no i already replied to a whole forum |
| 09:00.27 | id` | guess ill have to get active on wowi now |
| 09:00.57 | Depherios | after this... I'll be forced to do the CURSE forums |
| 09:01.03 | Depherios | ....... never checked out wowguru's :P |
| 09:01.08 | Depherios | maybe I'll go there, lol |
| 09:04.33 | id` | o_O |
| 09:05.46 | *** join/#wowi-lounge dvorakkey (n=abc@adsl-70-231-241-81.dsl.snfc21.sbcglobal.net) |
| 09:07.31 | Depherios | why the funny face? |
| 09:07.43 | Depherios | ... my Main's name is Dvorak O_o |
| 09:13.41 | dvorakkey | can someone make me an IWIN button |
| 09:13.48 | Depherios | XD |
| 09:14.07 | Depherios | I could make you an ILOSE button... maybe |
| 09:16.10 | dvorakkey | make that ULOSE then |
| 09:19.08 | Kolth | Indu: SetIgnoreArrows(false) lets me use arrows to move left/right and up/down in history? |
| 09:19.15 | id` | yes |
| 09:19.31 | Kolth | Never new about that method :) |
| 09:19.59 | id` | me neither, i ripped it from mars :< |
| 09:22.48 | id` | (some guy that made some addons) |
| 09:23.59 | Kolth | Mars is famous! |
| 09:24.36 | id` | he is? |
| 09:24.56 | Kolth | Yep |
| 09:25.00 | Kolth | Third planet from the sun... |
| 09:25.38 | id` | http://ui.worldofwar.net/ui.php?id=291 |
| 09:25.57 | id` | when i found it (MarsEditArrows) it was a separate small thingy |
| 09:26.40 | Kolth | The Mars sweet is nice. |
| 09:26.45 | Kolth | suite* |
| 09:27.09 | Depherios | I just installed mars' raid bars the other night... wanted to give them a try... |
| 09:34.11 | id` | bah |
| 09:34.18 | id` | users on ui.worldofwar.net make me mad |
| 09:34.32 | id` | >:\ |
| 09:34.43 | id` | better get to woek |
| 09:34.44 | id` | work |
| 09:35.14 | dvorakkey | haha try onhyperlinkenter |
| 09:37.08 | id` | ? |
| 09:37.37 | dvorakkey | anyone think of that for item links |
| 09:43.10 | dvorakkey | you think people will download an addon for that |
| 09:43.34 | Kremonte_ | for what? |
| 09:45.53 | dvorakkey | mouseover item hyperlink to show tooltip |
| 10:07.38 | id` | i like the wrangler better |
| 10:09.35 | dvorakkey | is there any way to highlight chat text |
| 10:10.43 | Kremonte_ | any idea why this won't work? |
| 10:10.43 | Kremonte_ | http://wow.pastebin.com/483928 |
| 10:10.58 | dvorakkey | clicking is too much effort |
| 10:12.19 | dvorakkey | how about this, open several tooltips like wrangler, then close all when you leave chat frame |
| 10:15.36 | *** join/#wowi-lounge Tuatara (n=chatzill@d142-59-67-40.abhsia.telus.net) |
| 10:15.56 | dvorakkey | whats the error |
| 10:19.23 | Kremonte_ | in http://wow.pastebin.com/483928? |
| 10:19.30 | Kremonte_ | there is none. the hooking just isn't working |
| 10:40.04 | dvorakkey | might be naming conflict |
| 10:41.10 | Kremonte_ | why would it be a naming conflict |
| 10:41.24 | Kremonte_ | im hooking SendChatMessage =/ |
| 10:45.39 | dvorakkey | try retyping it |
| 10:46.20 | Kremonte_ | retyping wah? |
| 10:49.01 | krka | it! |
| 10:49.05 | Kremonte_ | it |
| 10:49.08 | Kremonte_ | i retyped it |
| 10:50.47 | Kremonte_ | krka, you have any idea? ;_; |
| 11:00.30 | krka | will take a look |
| 11:01.21 | krka | your function doesn't get called? |
| 11:01.51 | Kremonte_ | just doesnt do anything |
| 11:01.59 | Kremonte_ | i added a default_chat_frame:addmessage () but it doesnt get called |
| 11:02.25 | krka | how do you know it doesn't do anything? |
| 11:02.36 | krka | have you sent something to a friend and see if he got it+ |
| 11:02.44 | Kremonte_ | [ 06:01 ] [Kremonte_] i added a default_chat_frame:addmessage () but it doesnt get called |
| 11:02.49 | krka | oops |
| 11:04.14 | krka | don't see anything wrong |
| 11:05.00 | Kremonte_ | =/ |
| 11:05.19 | krka | and SendChatMessage is supposed to get called? |
| 11:05.26 | Kremonte_ | hmm i have an idea |
| 11:05.50 | Kremonte_ | .....yup |
| 11:05.50 | krka | or maybe something else is overwriting SendChatMessage |
| 11:05.55 | Kremonte_ | i had a typo in my .toc LOL |
| 11:06.04 | krka | doh |
| 11:06.10 | Kremonte_ | was calling WhatShens.lu |
| 11:10.00 | Kremonte_ | still dont work GRR |
| 11:10.18 | Kremonte_ | okay |
| 11:10.19 | Kremonte_ | im still stupid |
| 11:10.23 | Kremonte_ | the game crashed and it wasnt checked |
| 11:10.32 | Kremonte_ | knife plz im gonna slit my wrists and be emo |
| 11:31.14 | *** join/#wowi-lounge MoonWolf (i=Sorvarh@ip51ccaa81.speed.planet.nl) |
| 11:35.48 | Kremonte_ | hmm |
| 11:35.53 | Kremonte_ | how come i can't add % to a string |
| 11:37.17 | Kolth | Kremonte: Paste code please? |
| 11:37.36 | Kremonte_ | local hpp = tostring(floor(100 - (hpdeficit / UnitHealthMax("player")) * 100)) |
| 11:37.36 | Kremonte_ | hpp = hpp .. "%" |
| 11:37.46 | Kremonte_ | the tostring() didnt help =( |
| 11:38.07 | Kremonte_ | hm could it be because i'm using it in a gsub? |
| 11:38.28 | dvorakkey | only if it's part of pattern |
| 11:38.39 | Kremonte_ | nope, just the replace =/ |
| 11:38.57 | Kolth | What code do you think crashes the client? |
| 11:39.04 | Kremonte_ | crashes? huh |
| 11:39.14 | Kolth | "the game crashed and it wasnt checked" |
| 11:39.15 | Kremonte_ | ask tem lol |
| 11:39.20 | Kremonte_ | ohh no |
| 11:39.26 | Kremonte_ | the game crashed and the addon wasnt re-enabled |
| 11:39.39 | Kolth | oh :) |
| 11:39.59 | Kolth | Can you paste more code? |
| 11:40.16 | Kremonte_ | local hpp = tostring(floor(100 - (hpdeficit / UnitHealthMax("player")) * 100)) |
| 11:40.16 | Kremonte_ | hpp = hpp .. "%" |
| 11:40.16 | Kremonte_ | msg = string.gsub(msg, "<hpp>", hpp) |
| 11:40.32 | *** join/#wowi-lounge _aLF (n=Alexandr@d83-177-207-239.cust.tele2.fr) |
| 11:41.46 | Kolth | Tried outputing hpp before ya gsub? |
| 11:42.04 | Kolth | And you get errors, yeah? What are they? |
| 11:42.13 | Kremonte_ | no errors |
| 11:42.18 | Kremonte_ | just doesnt add the % |
| 11:42.28 | Kolth | ah |
| 11:42.32 | Kremonte_ | adds the % before the gsub |
| 11:42.36 | krka | % is a special symbol... try % or \% |
| 11:42.41 | Kolth | ^^ |
| 11:42.53 | Kremonte_ | tried that and it gave me an error before..but the math was dfifferent |
| 11:42.54 | Kremonte_ | one sec |
| 11:43.29 | Kremonte_ | still no % =/ |
| 11:43.47 | Kolth | Replace % with an alphabetical char |
| 11:44.22 | Kremonte_ | works |
| 11:44.29 | Kolth | There ya go. |
| 11:44.39 | Kremonte_ | still doesnt let me us % ;_; |
| 11:44.43 | Kolth | Yes |
| 11:44.45 | Kolth | But you know why. |
| 11:44.51 | Kremonte_ | its what i thought before =/ |
| 11:44.56 | Kremonte_ | hmm |
| 11:45.51 | krka | If repl is a string, then its value is used for replacement. Any sequence in repl of the form %n, with n between 1 and 9, stands for the value of the n-th captured substring (see below). |
| 11:47.04 | krka | you could make your own replace-function though |
| 11:47.45 | krka | I think % might work though |
| 11:47.48 | krka | % |
| 11:47.50 | krka | gah |
| 11:47.53 | krka | two of them |
| 11:47.54 | Kremonte_ | huh |
| 11:47.54 | Kremonte_ | lol |
| 11:47.56 | Kremonte_ | ah |
| 11:48.03 | krka | seems my irc-client is evil too |
| 11:48.07 | krka | testing: % |
| 11:48.13 | krka | %% |
| 11:48.17 | Kolth | ah |
| 11:48.17 | Kolth | yes |
| 11:48.18 | Kremonte_ | %% |
| 11:48.26 | Kremonte_ | w00t |
| 11:48.27 | Kremonte_ | <3 |
| 11:48.27 | Kolth | Seeing that % requires % it seems |
| 11:48.30 | krka | <krka> % is a special symbol... try % or \% |
| 11:48.32 | Kolth | Google ftw |
| 11:48.37 | krka | i didn't even see my mistake there |
| 12:25.52 | *** join/#wowi-lounge AnduinLothar (n=KarlKFI@adsl-67-127-165-108.dsl.irvnca.pacbell.net) |
| 12:45.08 | AnduinLothar | so, think it'll be this tuesday or next? |
| 12:46.40 | AnduinLothar | well, test servers are still down, that's not very useful |
| 13:18.43 | *** part/#wowi-lounge dvorakkey (n=abc@adsl-70-231-241-81.dsl.snfc21.sbcglobal.net) |
| 13:50.21 | *** join/#wowi-lounge id` (n=Industri@gateway.is.remotion.nl) |
| 14:21.24 | *** join/#wowi-lounge MentalPower (n=chatzill@host-70-45-80-48.onelinkpr.net) |
| 14:58.14 | *** join/#wowi-lounge Rallion (i=HydraIRC@cpe-72-224-69-179.nycap.res.rr.com) |
| 15:16.27 | futrtrubl | I hope it is this tuesday, it will allow me to make BEB better |
| 15:22.23 | Tain | I hope the test server comes back up before then. |
| 15:28.05 | MoonWolf | why tain ? |
| 15:28.15 | Tain | For additional testing. |
| 15:29.09 | MoonWolf | testing what ? |
| 15:29.33 | Tain | Addons. Especially the scaling changes. |
| 15:30.25 | MoonWolf | this fucking rock elemental dodged paried and made me miss evicerate 6 times.! 6 TIMES. GAH! |
| 15:31.19 | Tain | That's rough. |
| 15:33.40 | GenNMX | I've got my next addon idea! It'll be a complex algorithm which looks at all available in-game variables and gives advice on to what action to take next at any given time. If the action is an ability, it will bind that ability to a specific keypress. |
| 15:34.14 | Tain | That sounds... complicated. |
| 15:34.56 | MoonWolf | that sounds like hook it up to something that creates artificial keypresses and tada. BOT! |
| 15:35.43 | GenNMX | Heh, I'm kidding. Be very glad people who could make an addon like that have enough sense to know it would destroy WoW scripting. |
| 15:36.13 | MoonWolf | i did have an idea to do a onebag style spellbook though |
| 15:36.25 | GenNMX | Per slouken's old rule, "Well if x() is abused, then we'll just remove/modify it." |
| 15:37.02 | GenNMX | Off to work. |
| 15:37.12 | MoonWolf | if that makes any sense to you people. |
| 15:37.38 | GenNMX | MoonWolf: www.discordmods.com, look at the Mini Spellbook |
| 15:38.06 | MoonWolf | yeah, but i severly dislike the border on that mod, and some other things. |
| 15:39.06 | MoonWolf | therefor i though, maybe i should make one myself. then i choked on the idea of all the xml |
| 15:39.13 | MoonWolf | i am horrible with the wow xml. |
| 15:40.15 | Tain | AceGUI! |
| 15:47.09 | MoonWolf | still need to learn to use it. |
| 15:54.49 | Tain | It does take a little bit to see how it works, but what it does is let you define basically just the frame name in XML, and then all settings in LUA objects. |
| 15:55.23 | Tain | So it just looks like a normal object. It really is a lot easier when you do get used to it. |
| 15:56.45 | MoonWolf | i care not about spelling! |
| 16:09.16 | Ktron|zzz|EST | oaky mnoolowf, no mroe sleplnig it is |
| 16:10.43 | Ktron|zzz|EST | azmanig waht plepoe can slitl raed as lnog as the frsit and lsat lteters are in pcale |
| 16:15.18 | *** join/#wowi-lounge id` (n=tom@hellsblade.xs4all.nl) |
| 16:19.40 | *** join/#wowi-lounge Osagasu (n=NOYB@rhhe10-109.2wcm.comporium.net) |
| 16:29.13 | *** join/#wowi-lounge Ktron (n=Ktron@c-24-128-172-211.hsd1.nh.comcast.net) |
| 16:30.46 | *** join/#wowi-lounge Shouryuu (n=same@cm69.epsilon71.maxonline.com.sg) |
| 16:30.52 | Shouryuu | rawr? |
| 16:31.14 | Shouryuu | rawr =( |
| 16:36.06 | Shouryuu | can anyone hear me or am I blocked by something |
| 16:36.11 | Kiliek | i hear |
| 16:36.14 | Shouryuu | cool :P |
| 16:36.32 | MoonWolf | we simply dont want to talk to you |
| 16:36.35 | Shouryuu | fine |
| 16:36.40 | Shouryuu | be that way |
| 16:36.46 | Shouryuu | lol |
| 16:37.12 | MoonWolf | hey, i make one kickass lasanga. |
| 16:37.36 | MoonWolf | you should get something to drink with it though, its kinda spicy |
| 16:40.12 | MoonWolf | ~today |
| 16:40.20 | purl | sucks. |
| 16:40.23 | MoonWolf | ~friday |
| 16:40.26 | purl | Friday sucks, because it should be the weekend, but you're stuck working anyway. |
| 16:40.26 | MoonWolf | oh there you are. |
| 16:40.42 | id` | totally applies |
| 16:40.49 | id` | ~saturday |
| 16:40.50 | purl | Saturday is the day that sucks the least! |
| 16:40.55 | id` | wrong |
| 16:41.02 | Shouryuu | my mIRC registration expired on my normal cmop =( |
| 16:41.03 | id` | saturday i spend working too |
| 16:41.16 | id` | Shouryuu: then use xchat. use a silverex build |
| 16:41.19 | MoonWolf | Shouryuu, stop using mirc. |
| 16:41.24 | Shouryuu | lol |
| 16:41.24 | id` | \morc = the suck |
| 16:41.27 | id` | mirc* |
| 16:41.49 | id` | http://silverex.org |
| 16:42.05 | MoonWolf | mIRC 6.16 has been released! (July 7th 2004) <- how up to date. |
| 16:42.23 | Shouryuu | I'm going to kick the chat addiction anyways |
| 16:42.31 | Shouryuu | school picks up in 2 days =( |
| 16:42.46 | Shouryuu | I've been wasting too much time chatting, not enough work... *sbo* |
| 16:48.01 | id` | I'm going to make an addon that colors visor action buttons with grey/red/blue on usability/out of range/out of mana |
| 16:53.18 | *** join/#wowi-lounge futrtrubl (n=not@port0185-aaw-adsl.cwjamaica.com) |
| 16:53.23 | Shouryuu | rawr |
| 16:53.48 | id` | lo futrtrubl |
| 16:53.55 | futrtrubl | ;'] |
| 16:54.08 | Tain | Crap I have a ton to do to update Visor's ActionButtons so they work like the normal in-game buttons better. |
| 17:12.33 | *** join/#wowi-lounge Ratbert_CP (n=KCummins@204.128.192.5) |
| 17:12.56 | *** join/#wowi-lounge Parak (n=profi@user-12hdr8d.cable.mindspring.com) |
| 17:26.06 | *** join/#wowi-lounge Kaelten (n=Kaelten@pcp04349492pcs.mobilh01.al.comcast.net) |
| 17:26.13 | *** mode/#wowi-lounge [+o Kaelten] by ChanServ |
| 17:26.19 | Kaelten | ello everyone |
| 17:26.21 | Shouryuu | hey' |
| 17:28.47 | Kaelten | end, you around man? |
| 17:33.28 | Shouryuu | well I'm off |
| 18:06.57 | *** join/#wowi-lounge groll (n=hoho@62.119.159.41) |
| 18:14.42 | id` | I have an addon that does nothing more then |
| 18:14.45 | id` | if not self.playerInCombat and (self.playerHasAggro and UnitCanAttack('player', 'target')) then AttackTarget() end |
| 18:14.55 | id` | this doesnt work with autoattack |
| 18:15.05 | id` | because its not an ability that finishes after some time |
| 18:15.42 | id` | are there any other things like this? |
| 18:15.48 | id` | because then ill make an exception |
| 18:27.22 | *** join/#wowi-lounge Sorren`quake4`in (n=astrayca@66-215-83-80.dhcp.psdn.ca.charter.com) |
| 18:34.07 | End | I'm kinda around |
| 18:34.32 | id` | How do i check if a spell is being cast? |
| 18:35.18 | *** join/#wowi-lounge Depherios (n=Deph@67.189.88.161) |
| 18:35.23 | id` | Auto Shot and Shoot |
| 18:43.32 | *** join/#wowi-lounge [1]Kaelten (n=Kaelten@pcp04349492pcs.mobilh01.al.comcast.net) |
| 19:05.32 | id` | meestark |
| 19:05.33 | id` | :p |
| 19:06.12 | id` | meestarkay |
| 19:06.12 | id` | :D |
| 19:18.12 | Tain | Ok now if I have a function ID, how do I find out what that function does? |
| 19:18.45 | *** join/#wowi-lounge Cide (i=Cide@81-226-233-223-no60.tbcn.telia.com) |
| 19:19.19 | *** join/#wowi-lounge Kaelten (n=Kaelten@pcp04349492pcs.mobilh01.al.comcast.net) |
| 19:51.25 | *** mode/#wowi-lounge [+o Kaelten] by ChanServ |
| 19:56.18 | Kaelten | good morning cair |
| 19:56.38 | Cairenn | hey :) |
| 19:56.52 | Kaelten | hows it going cair |
| 19:57.13 | Cairenn | good good, you? |
| 19:58.14 | *** join/#wowi-lounge dvorakkey (n=abc@adsl-70-231-241-81.dsl.snfc21.sbcglobal.net) |
| 20:03.22 | Kaelten | going ok |
| 20:03.27 | Kaelten | watching an Law and Order Marathon |
| 20:06.21 | Cairenn | heh, I love that show |
| 20:06.35 | Kaelten | ya its fun. |
| 20:15.43 | *** join/#wowi-lounge digix (n=digix@66-90-145-10.dyn.grandenetworks.net) |
| 20:22.56 | pagefault | woooooo double honour weekend!!! |
| 20:34.51 | *** join/#wowi-lounge krka (i=krka@c80-216-103-22.cm-upc.chello.se) |
| 20:56.16 | *** part/#wowi-lounge Ratbert_CP (n=KCummins@204.128.192.5) |
| 21:16.16 | krka | what are the possible names returned by GetShapeshiftFormInfo for a druid? |
| 21:16.26 | krka | "Moonkin" "Travel" "Cat" "Bear" ? |
| 21:19.22 | Codayus | Hmm |
| 21:19.51 | Codayus | The only warrior in a 10-man baron run said the group sucked because it wasn't following his orders, set himself to ML, and hearthed. |
| 21:20.44 | Codayus | He then went offline, so his ML trick failed. Group is now continuing using 3 hunter pets to tank. Worked fine on the Baroness. Wonder if the Baron will work? :-) |
| 21:31.14 | dvorakkey | also aquatic |
| 21:34.32 | *** join/#wowi-lounge Athes (i=Curious@213.91.172.160) |
| 21:34.45 | Athes | Hey. |
| 21:35.07 | Athes | Again needing a little help with that function from last night :-/ |
| 21:35.52 | Athes | Is there a function to get only the fraction of a word? |
| 21:36.41 | Tain | There are a couple of different ways, Athes. |
| 21:37.02 | Tain | The best place to start is in the Lua Reference manual, it goes through the different string functions. |
| 21:37.04 | Tain | http://www.lua.org/manual/5.0/ |
| 21:37.33 | Tain | The stuff that you'd want to see is all under section 5 - Standard Libraries. |
| 21:37.38 | Athes | Thanks. |
| 21:39.13 | Tain | Really between that and the WoW Wiki http://www.wowwiki.com/Main_Page I find almost everything I'm looking for. |
| 21:40.05 | Athes | Um...can you direct me to section 5's subsection I should be looking for? There's an awful lot of functions there.... |
| 21:40.33 | Athes | And I've no idea what I'm looking for , in english... |
| 21:40.55 | Athes | String manipulation? |
| 21:40.57 | Tain | Under strings. If you want a part of a word it's going to be string.find probably |
| 21:41.44 | pagefault | looks like we are getting double rep now |
| 21:42.12 | Athes | Ah.since basically if you've entered "Seal of Wisdom" , I want to use just the word "Wisdom" within another IF function. |
| 21:44.15 | Kolth | How do I get code to execute on UI load without an XML file in my AddOn? |
| 21:45.20 | dvorakkey | you can hook another onload function |
| 21:45.47 | Kolth | So really it's best to just make my own frame. |
| 21:45.54 | Kolth | Or use Ace :) |
| 21:53.06 | Kaelten | anyone know how to resolve a dependency conflict in linux? |
| 21:54.14 | Tain | heh I used to do one of two things. |
| 21:54.32 | Tain | Is it two different things wanting different versions of something? |
| 21:55.08 | Kaelten | no I'm trying to install glibc-common and its conflicting with the old glibc |
| 21:57.15 | Tain | Ah it's been too long since I used rpm. And actually when I did I didn't have a lot of patience for those conflicts and did --nodeps a lot. |
| 21:57.23 | Tain | Which ignores dependancies and installs anyway. |
| 21:57.39 | Tain | (Which is generally not what you're supposed to do.) |
| 22:03.50 | Kaelten | ya some of these things are stupdi |
| 22:04.26 | Kaelten | one of the dependencies I've installed several times. |
| 22:05.01 | *** join/#wowi-lounge pedropenguin (n=chatzill@pcp990521pcs.nchrls01.sc.comcast.net) |
| 22:05.11 | pedropenguin | do any of you guys use teamspeak? |
| 22:05.23 | id` | no i am dutch you do not want to hear me period |
| 22:05.40 | id` | xD |
| 22:05.42 | pedropenguin | hehe |
| 22:06.04 | pedropenguin | do you have it on your computer? i just want to see if someone outside of my network can connect to my server |
| 22:06.15 | id` | sure |
| 22:06.16 | id` | :p |
| 22:07.24 | pedropenguin | hate to give ip in chat but you cant pm unless your registered |
| 22:08.21 | pedropenguin | you get my message...i probablly have to go register |
| 22:08.27 | id` | nope |
| 22:08.36 | id` | you kn quakenet? |
| 22:08.38 | id` | on* |
| 22:08.47 | pedropenguin | no im not |
| 22:08.54 | pedropenguin | ill just say the ip in the chat |
| 22:09.12 | id` | 68.59.38.157 |
| 22:09.13 | id` | ? |
| 22:09.13 | id` | :p |
| 22:09.26 | pedropenguin | yeah try to connect to that |
| 22:09.32 | id` | go /dns |
| 22:09.33 | id` | :p |
| 22:09.46 | pedropenguin | thatll do it |
| 22:10.14 | pedropenguin | can you connect? |
| 22:10.15 | id` | nope |
| 22:10.17 | id` | no reply |
| 22:10.31 | pedropenguin | damn |
| 22:10.40 | pedropenguin | have you set up a server before? |
| 22:11.07 | id` | a teamspeak server? no |
| 22:11.19 | id` | a daemon, yes |
| 22:11.30 | pedropenguin | hmm i forwarded the ports on the router and there isnt a firewall |
| 22:11.34 | id` | (but nothing related to teamspeak) |
| 22:11.52 | id` | is the cable plugged in |
| 22:11.53 | id` | ? |
| 22:11.55 | id` | =P |
| 22:12.05 | pedropenguin | i can connect to it |
| 22:12.17 | id` | ;\ |
| 22:12.23 | id` | guess its the router then |
| 22:12.32 | id` | or a firewall |
| 22:12.37 | id` | (lol im such an ass :|) |
| 22:13.07 | id` | okay im now officially so bored that i'm going to check my photo on hotornot.com and pimp my rating all over irc |
| 22:13.55 | id` | http://meetme.hotornot.com/r/?emid=GLO8GZE |
| 22:14.03 | id` | http://meetme.hotornot.com/r/?emid=GQRSOMA |
| 22:14.08 | id` | http://meetme.hotornot.com/r/?emid=GSNRKQG |
| 22:14.12 | id` | http://meetme.hotornot.com/r/?emid=GMOEOMK |
| 22:14.17 | id` | doze are my double matches |
| 22:14.18 | id` | :p |
| 22:14.34 | id` | hot, hot, hot and.. hot :D |
| 22:14.56 | id` | http://meetme.hotornot.com/r/?emid=NRR8EZO |
| 22:14.57 | id` | me |
| 22:14.58 | id` | :D |
| 22:15.07 | id` | rating: 7.9 |
| 22:15.26 | id` | 8)\-< |
| 22:15.28 | id` | 8)|-< |
| 22:15.30 | id` | 8)/-< |
| 22:16.11 | id` | i am an E-PIMP YO |
| 22:20.41 | id` | Cairenn: we are cool because we hang out in wow channels without being busy with wow |
| 22:21.04 | id` | now i am an E-PIMP and an E-THUG |
| 22:21.07 | id` | ... yo ... |
| 22:21.11 | Cairenn | you are a weirdo :p |
| 22:21.23 | id` | why? :< |
| 22:21.32 | Cairenn | why not? |
| 22:21.37 | id` | because i like to make fun of internet culture? |
| 22:21.50 | id` | by taking part of it |
| 22:21.51 | Cairenn | I'm just picking on you because I'm bored :p |
| 22:22.00 | pedropenguin | id can you try connecting again |
| 22:22.06 | id` | well at least im not emo |
| 22:22.08 | id` | sure |
| 22:22.16 | Cairenn | you considered it last night :p |
| 22:22.22 | id` | what? me? |
| 22:22.24 | id` | nevarr! |
| 22:22.44 | Cairenn | "someone give me a knife" "Imma slit my wrists and be emo" |
| 22:22.47 | Tain | Emo Phillips? |
| 22:23.00 | id` | Cairenn: haha that was not last night, i think.. |
| 22:23.43 | id` | Tain: no, the teen subculture |
| 22:23.45 | id` | http://en.wikipedia.org/wiki/Emo_%28teen_subculture%29 |
| 22:23.47 | pedropenguin | you try the server id' |
| 22:24.02 | id` | ya no go |
| 22:24.03 | id` | :| |
| 22:24.18 | id` | no password or whatever |
| 22:24.18 | id` | ? |
| 22:24.31 | pedropenguin | just choose anonymous or whatever |
| 22:24.35 | pedropenguin | you couldnt connect? |
| 22:25.10 | id` | [23:25:01] Connecting to 68.59.38.157 |
| 22:25.10 | id` | [23:25:04] No reply from server |
| 22:25.10 | id` | Maybe the server is offline |
| 22:25.10 | id` | or maybe teamspeak is not running on it |
| 22:25.20 | pedropenguin | :( |
| 22:25.26 | id` | :( |
| 22:26.05 | id` | Tain: watch and learn. |
| 22:26.10 | id` | Cairenn too |
| 22:26.11 | id` | http://www.somethingdirectory.com/main_emo.htm |
| 22:27.14 | Kaelten | muhahahaha I espcaped dependency hell! |
| 22:29.20 | *** join/#wowi-lounge Red`Gone (n=L@cpe-72-225-171-233.si.res.rr.com) |
| 22:41.23 | pedropenguin | id' could you try again |
| 22:41.25 | pedropenguin | sorry to be a pain |
| 22:42.49 | pedropenguin | you there id` |
| 22:43.27 | id` | same thing |
| 22:43.29 | id` | maybe its me |
| 22:43.41 | pedropenguin | are you able to connect to other servers? |
| 22:43.51 | id` | dno never use it |
| 22:43.54 | id` | got one? |
| 22:43.57 | id` | to try |
| 22:45.14 | pedropenguin | try this connect to 68.59.38.157:8767 |
| 22:46.32 | pedropenguin | no luck? |
| 22:47.54 | id` | no |
| 22:52.54 | *** join/#wowi-lounge pedropenguin_ (n=chatzill@pcp990521pcs.nchrls01.sc.comcast.net) |
| 22:53.09 | pedropenguin | ?? |
| 22:53.41 | id` | you lost connection |
| 22:53.57 | pedropenguin | yeah i know but the ??s were about the teamspeak server |
| 22:53.58 | pedropenguin | :p |
| 22:54.01 | pedropenguin | try to connec |
| 22:54.02 | id` | o |
| 22:54.04 | id` | no :( |
| 22:54.17 | pedropenguin | hey is that you? |
| 22:54.20 | id` | ya |
| 22:54.22 | id` | :IO |
| 22:54.23 | id` | :O |
| 22:54.25 | pedropenguin | hooray |
| 22:54.32 | pedropenguin | too bad i dont have a mic lol |
| 22:55.01 | pedropenguin | ok i appreciate the help man! |
| 22:55.03 | pedropenguin | cya |
| 22:55.09 | id` | np |
| 22:55.09 | id` | :D |
| 23:48.42 | *** join/#wowi-lounge wowguru-3051 (n=wowguru-@ca-glendora-cuda1-c6a-b-193.arcdca.adelphia.net) |
| 23:48.51 | *** join/#wowi-lounge Depherios (n=Deph@67.189.88.161) |