![]() |
There is another issue i noticed, but i will not have time to fix it until the morning.
|
Quote:
|
Quote:
|
Quote:
I am patient - lol - I can wait. :) Enjoy your weekend! |
How hard is it to add extra melee stats to the tooltip? I added melee haste and melee hit for my Paladin but they are not using any CSS or anything else so they are just white text from the code no formatting. I would like to be able to add different stats if at all possible.
|
configuring what stats to display is a pain atm. I have thought of several different options but none I like.
it is a definite on my to-do list |
Fair enough, Have you released your raid Progression module on any forums other then your own if so do you have a link of where a package or at least some instructions are available?
|
Quote:
find Code:
$localpath = "armory/"; Code:
global $vbulletin; |
so far so good... works a charm! *crosses fingers* ;) Thanks!
|
find
$wowchar_code .= " onmouseover='ajax_showTooltip(\"".$vbulletin->options['bburl']."/ajax.php?do=wowcharcode&server={xserver}&char={cha rname}\",this);"; in the WoW Char Code Postbit plugin replace with $wowchar_code .= " onmouseover='ajax_showTooltip(\"".$vbulletin->options['bburl']."/clientscript/wowbbcode_js/ajax.php?do=wowcharcode&server={xserver}&char={cha rname}\",this);"; |
might want to include mana on it as well :D
|
Quote:
I've fought back and forth through several ideas on how to provide a better degree of customization to this plugin and still haven't really found anything i like yet. However, after watching this really cool video on why more is less ( http://youtube.com/watch?v=vMV4PIEIKY4 , very much worth the 64 minute watch ), i decided on actually using every stat available through the armory XML sheet and providing larger groups. Instead of the roughly 108 (!) stats available through the armory profile, you'll have 7 - 9 to choose from. each class & spec, you'll will be able to choose 3 different stat groups. melee, spell, defense, arena, ranged, Pets, Resistances and a Class block and im sure there is another one I'm forgetting http://underthemain.net/forums/showthread.php?t=2 The progression thing is more of a vba CMPS hack. I've been re-writing some of it though since it was very much copy & paste coded :x |
Quote:
Im not sure what you are trying to do here except create a lot of 404 errors ? there is no ajax.php file in the clientscript/wowbbcode_js directory. I use the ajax.php file of vbulletin. |
hmm, my bad meant for the ajax.js file.
|
Right, there is an ajax.js, but it does not do what you are thinking it does. The code snip you posted above is something you definitely don't want to do.
|
all i remember is having to do something with a url in one of the products in order to get the rollover to work :-/ cant quite remember tho.
anyways. add mana :D |
o.
well, this coming weekend i should have a pretty big update that changes how it looks and gives the forum admin easier ways to configure whats shown. |
Quote:
|
I searched this thread by my problem hasnt come up yet.
I updated to 3.7 Gold yesterday and along with updating the forum I updated all the addons (Before it was running 3.7 RC1) I updated this one and ran across a small issue If you go here (where I primarily use the addon) http://www.battlegroundwarriors.com/...ageid=officers Hovering over any particular name gives a tooltip but where all the stats should be it just says 'Array' Any idea what is causing the problem? I know its a vbadvanced page but even in an actual post it does the same thing. Also I never knew you were on Kargath server. I've probably seen you around a few times. |
i joined No Quarter for a short time on kargath. After a little while in the guild, i realized that the guild was not yet at a commitment level that I required as a raid guild.
anyways, did you update the functions_wowcharcode.php file ? that's the only thing i can think of that would cuase this issue. Use the one in the plugin post, not the one in the zip file. |
Yea that seemed to work I replaced the functions file and everything is working again.
Thank you |
I need this to work with servers with a space in the title. I saw someone hardcoded kul tiras to work on their forum, but I need it to work with several different ones. Does anyone have any clues?
I'm guessing I need to change some of the preg_replace to accept a space. Code:
preg_match("/(.*)-(.*)/", $realm, $match); |
Quote:
I've tested this on servers without spaces, with spaces, without ' with ' and all combonations, all of them work. My character is on a realm with a ' in it. several users of this mod are on realms with spaces in them. If you are having a specific issue I NEED THE CHARACTER NAME AND REALM YOU ARE USING. Please don't just say it doesnt work for this and that without providing me any details as to what isn't working. The line you listed above only does anything if the value of the [char] option has a - in it (i.e. [char=EU-Server]Character[/char] |
<a href="http://www.graffe.com/forums/showpost.php?p=1345323&postcount=10" target="_blank">http://www.graffe.com/forums/showpos...3&postcount=10</a>
realm: Silver Hand character names: Have tried several: Nadiar, Zilandria, Derreidos Right now everything is set at the default. |
This is a great mod. The link seems to break though after editting a thread though, probably due to the WYSIWYG editor? I had this issue with the WoWHead Item Link addon, but the author seems to have fixed it somehow. Is there a way to somehow get that fix to work for this specific mod? :)
|
Quote:
I've been kind of out of sorts since my monitor died and I havent been able to play wow and ive been keeping up on my windows CE device.. anyways, DHL should be giving my replacement tomorrow and i'll get that fixed along with some other issues i was working on. |
I followed the install instructions but I'm getting this error when I debug this myself.
its erroring on the sack(undefined) part Code:
uncaught exception: Permission denied to call method XMLHttpRequest.open i'll test more... |
Quote:
|
Quote:
I.e. foo.com v.s. www.foo.com |
Quote:
|
Quote:
Warning: Invalid argument supplied for foreach() in [path]/includes/functions_wowcharcode.php on line 704 any idea how to fix that? Thanks! |
ooo
disable the plugin named "build block" at the member_builg_blocks_start hook. |
Quote:
|
sorry for the spammage....but has anyone figured out how to make this work with servers that have two-word names (ie Emerald Dream)? Thanks!
|
Not a problem.
However, i've written a lot of hacky code in the current incarnation of this mod and i'm feeling like to really go further with it, i need to re-write it. in the mean time, open up the functions_wowcharcode.php file, find the line like this, $this->SetFetchURL( "http://" . $this->locale . ".wowarmory.com/character-sheet.xml?r=" . urlencode($this->realmname) . "&n=" . urlencode($this->charname) ); add the following, $this->realmname = str_replace("+", " ", $this->realmname); before it. |
Quote:
|
Quote:
also i found your problem for the wysiwyg editor problems in your wysiwyg fix plugin it is alot simpler to fix than you think. First open up the plugin wysiwyg fix next change the hook to bbcode_create next select all inside code box and replace with: Code:
if ($this->is_wysiwyg()) { |
character name and realm...
|
it wont parse as long as it is a variation of char Also that error i spoke of i still cant fix it my character and realm is Lycomedesnw in Gilneas realm
|
you are using the 0.4.9 version correct ?
Line 704 in the functions_wowcharcode.php file does not contain the foreach() statement, but line 717 does. if $default isnt set on line 717, most likely classID isnt being set. Armory could be down or the XML cached is invalid (you can empty the cache in the vbulletin options). Your other problem, i don't know what your talking about "it wont parse as long as it is a variation of char". what does that mean? [char="vek'nilash"]character[/char] works but [CHAR="vek'nilash"]character[/CHAR] doesnt? |
All times are GMT. The time now is 07:35 AM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|