This popped up on me when i was trying to log in today
File: ./Localdata/Gameprefs.Pref
Last Author/Status:Source Control not available
Parser error in ./Localdata/GamePrefs.pref, line 2: Unrecognized token g_divPINLbl.show(true);
what does it mean and how do i fix it.
This is the code that comes up when i hit edit
;
g_divPINLbl.show(true);
g_divPINTextBox.setPadding("top", 12);
g_divPINLbl.setPadding("top", 12);
g_tbPIN.setText('');
}
}
}
//
// remembermeClicked()
//
// When remember me check box is unchecked, we should uncheck the remember password
//
//
function remembermeClicked()
{
var cbrMe = document.getElementById('CheckBoxObj' + id_cb_rememberme);
var cbrPwd = document.getElementById('CheckBoxObj' + id_cb_rememberpwd);
if ( undefined != cbrMe && undefined != cbrPwd )
{
if ( !cbrMe.checked )
{
cbrPwd.checked = false;
}
}
}
//
// rememberpwdClicked()
//
// When remember password is checked, we should check the remember me too
//
//
function rememberpwdClicked()
{
var cbrMe = document.getElementById('CheckBoxObj' + id_cb_rememberme);
var cbrPwd = document.getElementById('CheckBoxObj' + id_cb_rememberpwd);
if ( undefined != cbrMe && undefined != cbrPwd )
{
if ( cbrPwd.checked )
{
cbrMe.checked = true;
}
}
}
function applySavedCheckStates()
{
if ( g_strRedirNewPage == 'yes' )
return;
// some preset properties are not honored in XP, need to refresh themm
// after all elements have been rendered
function refreshElements()
{
if ( g_cbRememberUser != null && g_cbRememberUser!= undefined )
g_cbRememberUser.refresh();
if ( g_cbRememberPwd != null && g_cbRememberPwd!= undefined )
g_cbRememberPwd.refresh();
}
fEntry InitialVirtualShard 0
PrefEntry Login.Character Lessil
PrefEntry Login.DefaultPlayerType 0
PrefEntry Login.LastShard Dragon
PrefEntry Login.LoginType 3
PrefEntry Login.SaveUsername 1
PrefEntry Login.Username deathsangel5
PrefEntry SoundOption_Amb 0.197740
PrefEntry SoundOption_DSP 1
PrefEntry SoundOption_Fx 0.197740
PrefEntry SoundOption_Main 0.299435
PrefEntry SoundOption_Music 0.050847
PrefEntry SoundOption_MuteVoice 0
PrefEntry SoundOption_Notification 0.502824
PrefEntry SoundOption_OutputDevice 0
PrefEntry SoundOption_UI 0.203389
PrefEntry SoundOption_Video 0.598870
PrefEntry SoundOption_Voice 1.000000
PrefEntry svUserPrefs_66191.Muted 0
PrefEntry svUserPrefs_66191.Volume 29
PrefEntry SystemSpecs.atiCrossfireGPUCount 0
PrefEntry SystemSpecs.audioDriverName DirectSound
PrefEntry SystemSpecs.audioDriverOutput "Speakers (Realtek High Definition Audio)"
Comments