Anyone else having problems with their Drow characters and the Gateway? The issue is that it shows my Drow character, but when I click on it, nothing happens...he is level 17, but my level 6 Tiefling works perfectly.
"We know that the sheep live in denial; that is what makes them sheep. They do not want to believe that there is evil in the world...The sheep generally do not like the sheepdog...He has fangs and the capacity for violence. The difference, though, is that the sheepdog must not, cannot and will not ever harm the sheep...Still, the sheepdog disturbs the sheep...Until the wolf shows up. Then the entire flock tries desperately to hide behind one lonely sheepdog.
I didn't even consider that my issue had anything to do with my class but now I am wondering... I only have the one character which is the drow and I too can only see the character list but when I click nothing is happening. It would be nice to know how to fix it. I have tried using firefox and internet explorer and I have also made sure I have cookies enabled.
Doesnt appear browser issue as I have tried IE, FF, and Chrome....as I stated originally, my Tiefling CW works fine, but my Drow TR...nada (and he is the higher level).
"We know that the sheep live in denial; that is what makes them sheep. They do not want to believe that there is evil in the world...The sheep generally do not like the sheepdog...He has fangs and the capacity for violence. The difference, though, is that the sheepdog must not, cannot and will not ever harm the sheep...Still, the sheepdog disturbs the sheep...Until the wolf shows up. Then the entire flock tries desperately to hide behind one lonely sheepdog.
I'm having the same problem, as well. Since my Half-Orc and Human characters were wiped after the last Beta weekend, I can't check to see if it has to do with the Character's race or it's class, but now that the Launcher is fixed I'll go create some new characters and test it out.
"We know that the sheep live in denial; that is what makes them sheep. They do not want to believe that there is evil in the world...The sheep generally do not like the sheepdog...He has fangs and the capacity for violence. The difference, though, is that the sheepdog must not, cannot and will not ever harm the sheep...Still, the sheepdog disturbs the sheep...Until the wolf shows up. Then the entire flock tries desperately to hide behind one lonely sheepdog.
0
thaniiMember, Neverwinter Beta Users, Neverwinter Hero UsersPosts: 0Arc User
edited April 2013
It's a Javascript problem... Your drow must have an ' in his name and the gateway does not escape that character !
With FF just download Firebug. Then use F12 to activate firebug. Right click on the character button and use "inspect element". You should see some code. Just above the selected code you should have something like :
<li class="Player_Devoted" onclick="client.characterSelect('MyCharacter Strange'Name@MyAccount');">
Just replace the ' in your name with \'. So it will be :
<li class="Player_Devoted" onclick="client.characterSelect('MyCharacter Strange\'Name@MyAccount');">
Then just click on it and tadaaaaaa !
It's a Javascript problem... Your drow must have an ' in his name and the gateway does not escape that character !
With FF just download Firebug. Then use F12 to activate firebug. Right click on the character button and use "inspect element". You should see some code. Just above the selected code you should have something like :
<li class="Player_Devoted" onclick="client.characterSelect('MyCharacter Strange'Name@MyAccount');">
Just replace the ' in your name with \'. So it will be :
<li class="Player_Devoted" onclick="client.characterSelect('MyCharacter Strange\'Name@MyAccount');">
Then just click on it and tadaaaaaa !
The captain obvious developer.
I use Chrome primarily, but yes, my character does have a ' in his name.
I tried this with FF, and it says invalid character when it tries to log in after fixing with Firebug.
"We know that the sheep live in denial; that is what makes them sheep. They do not want to believe that there is evil in the world...The sheep generally do not like the sheepdog...He has fangs and the capacity for violence. The difference, though, is that the sheepdog must not, cannot and will not ever harm the sheep...Still, the sheepdog disturbs the sheep...Until the wolf shows up. Then the entire flock tries desperately to hide behind one lonely sheepdog.
0
thaniiMember, Neverwinter Beta Users, Neverwinter Hero UsersPosts: 0Arc User
I use Chrome primarily, but yes, my character does have a ' in his name.
I tried this with FF, and it says invalid character when it tries to log in after fixing with Firebug.
Hmmm... Basically you juste have to replace ' by \' but just in your name not the one surrounding your character name.
Or what u can try is use this kind of URL :
Comments
With FF just download Firebug. Then use F12 to activate firebug. Right click on the character button and use "inspect element". You should see some code. Just above the selected code you should have something like :
<li class="Player_Devoted" onclick="client.characterSelect('MyCharacter Strange'Name@MyAccount');">
Just replace the ' in your name with \'. So it will be :
<li class="Player_Devoted" onclick="client.characterSelect('MyCharacter Strange\'Name@MyAccount');">
Then just click on it and tadaaaaaa !
The captain obvious developer.
I use Chrome primarily, but yes, my character does have a ' in his name.
I tried this with FF, and it says invalid character when it tries to log in after fixing with Firebug.
Hmmm... Basically you juste have to replace ' by \' but just in your name not the one surrounding your character name.
Or what u can try is use this kind of URL :
http://gateway.playneverwinter.com/#char(Surname Last'Name@Account).
And then try to login.
But for me the FF & Firebug thing work like a charm (BTW u have a native firebug in chrome just push F12)