problem legend system
Posted: Fri May 28, 2010 12:43 pm
last interlude pack l2j.
hey dudes i add a legend system in my interlude server now i have a problem i create char and get error and cant login.
here error :
http://img189.imageshack.us/img189/3699/unbenanntmv.jpg
here theproblem i added a line like that in l2pcinstance .
so new is the 58. so what to make that the error will go away from console ? thanks
hey dudes i add a legend system in my interlude server now i have a problem i create char and get error and cant login.
here error :

http://img189.imageshack.us/img189/3699/unbenanntmv.jpg
here theproblem i added a line like that in l2pcinstance .
Code: Select all
"INSERT INTO characters " + "(account_name,obj_Id,char_name,level,maxHp,curHp,maxCp,curCp,maxMp,curMp," + "acc,crit,evasion,mAtk,mDef,mSpd,pAtk,pDef,pSpd,runSpd,walkSpd," + "str,con,dex,_int,men,wit,face,hairStyle,hairColor,sex," + "movement_multiplier,attack_speed_multiplier,colRad,colHeight," + "exp,sp,karma,pvpkills,pkkills,clanid,maxload,race,classid,deletetime," + "cancraft,title,accesslevel,online,isin7sdungeon,clan_privs,wantspeace," + "base_class,newbie,nobless,power_grade,last_recom_date,[color=#80BF00]legend[/color]) " +
Code: Select all
statement.setInt(54, isNewbie() ? 1 : 0); statement.setInt(55, isNoble() ? 1 :0); statement.setLong(56, 0); statement.setLong(57,System.currentTimeMillis()); [color=#40BF00]statement.setLong(58, islegend() ? 1 : 0);[/color] statement.executeUpdate(); statement.close();