cant create char , using NA client and have error when i want to create a char
Printable View
cant create char , using NA client and have error when i want to create a char
yeah i got same error when i trie to create a caracterhttp://s30.postimg.org/hkzcxdom9/Aion0000.jpgPHP Code:03:15:14.952 ERROR[PacketProcessor:2]: - Error saving new player: 111818 Ellyn
com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column 'wareh
ouse_size' in 'field list'
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
~[na:1.7.0_51]
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
~[na:1.7.0_51]
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Sou
rce) ~[na:1.7.0_51]
at java.lang.reflect.Constructor.newInstance(Unknown Source) ~[na:1.7.0_
51]
at com.mysql.jdbc.Util.handleNewInstance(Util.java:411) ~[mysql-connecto
r-java-5.1.18.jar:na]
at com.mysql.jdbc.Util.getInstance(Util.java:386) ~[mysql-connector-java
-5.1.18.jar:na]
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1052) ~[mysq
l-connector-java-5.1.18.jar:na]
at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3609) ~[mysql-co
nnector-java-5.1.18.jar:na]
at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3541) ~[mysql-co
nnector-java-5.1.18.jar:na]
at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2002) ~[mysql-connect
or-java-5.1.18.jar:na]
at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2163) ~[mysql-conn
ector-java-5.1.18.jar:na]
at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2624) ~[mys
ql-connector-java-5.1.18.jar:na]
at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.ja
va:2127) ~[mysql-connector-java-5.1.18.jar:na]
at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1362)
~[mysql-connector-java-5.1.18.jar:na]
at com.jolbox.bonecp.PreparedStatementHandle.execute(PreparedStatementHa
ndle.java:138) ~[bonecp-0.7.1.RELEASE.jar:0.7.1.RELEASE]
at mysql5.MySQL5PlayerDAO.saveNewPlayer(MySQL5PlayerDAO.java]:226) ~[na:
na]
at com.aionlightning.gameserver.services.player.PlayerService.storeNewPl
ayer(PlayerService.java:136) [AL-Game.jar:na]
at com.aionlightning.gameserver.network.aion.clientpackets.CM_CREATE_CHA
RACTER.runImpl(CM_CREATE_CHARACTER.java:229) [AL-Game.jar:na]
at com.aionlightning.gameserver.network.aion.AionClientPacket.run(AionCl
ientPacket.java:67) [AL-Game.jar:na]
at com.aionlightning.commons.utils.concurrent.ExecuteWrapper.execute(Exe
cuteWrapper.java:42) [al-commons-4.3.jar:na]
at com.aionlightning.commons.utils.concurrent.ExecuteWrapper.execute(Exe
cuteWrapper.java:35) [al-commons-4.3.jar:na]
at com.aionlightning.commons.network.PacketProcessor$PacketProcessorTask
.run(PacketProcessor.java:261) [al-commons-4.3.jar:na]
at java.lang.Thread.run(Unknown Source) [na:1.7.0_51]
03:15:21.560 INFO [pool-5-thread-1]: - Sending account disconnected 3
03:15:49.076 INFO [pool-3-thread-4]: - Sending current game time to all players
03:15:55.370 INFO [pool-3-thread-4]: - Game time saved...
03:15:55.372 WARN [pool-3-thread-4]: - class com.aionlightning.gameserver.servic
es.GameTimeService$1 - execution time: 6296msec
database al_server_gs error on table "players".
this is from svn R-190Quote:
Unknown column 'warehouse_size' in 'field list'
Quote:
-- ----------------------------
-- Table structure for players
-- ----------------------------
CREATE TABLE `players` (
`id` int(11) NOT NULL,
`name` varchar(50) NOT NULL,
`account_id` int(11) NOT NULL,
`account_name` varchar(50) NOT NULL,
`exp` bigint(20) NOT NULL default '0',
`recoverexp` bigint(20) NOT NULL default '0',
`x` float NOT NULL,
`y` float NOT NULL,
`z` float NOT NULL,
`heading` int(11) NOT NULL,
`world_id` int(11) NOT NULL,
`world_owner` int(11) NOT NULL default '0',
`gender` enum('MALE','FEMALE') NOT NULL,
`race` enum('ASMODIANS','ELYOS') NOT NULL,
`player_class` enum('WARRIOR','GLADIATOR','TEMPLAR','SCOUT','ASSASSIN','RANGER','MAGE','SORCERER','SPIRIT_MASTER','PRIEST','CLERIC','CHANTER','ENGINEER','GUNNER','ARTIST','BARD','RIDER','ALL') NOT NULL,
`creation_date` timestamp NULL default NULL,
`deletion_date` timestamp NULL default NULL,
`last_online` timestamp NULL default NULL on update CURRENT_TIMESTAMP,
`quest_expands` tinyint(1) NOT NULL default '0',
`npc_expands` tinyint(1) NOT NULL default '0',
`advenced_stigma_slot_size` tinyint(1) NOT NULL default '0',
`warehouse_size` tinyint(1) NOT NULL default '0',
`mailbox_letters` tinyint(4) unsigned NOT NULL default '0',
`title_id` int(3) NOT NULL default '-1',
`bonus_title_id` int(3) NOT NULL default '-1',
`dp` int(3) NOT NULL default '0',
`soul_sickness` tinyint(1) unsigned NOT NULL default '0',
`reposte_energy` bigint(20) NOT NULL default '0',
`online` tinyint(1) NOT NULL default '0',
`note` text,
`mentor_flag_time` int(11) NOT NULL default '0',
`last_transfer_time` decimal(20,0) NOT NULL default '0',
`custom_points` int(11) NOT NULL default '0',
`security_token` varchar(32) NOT NULL default '',
PRIMARY KEY (`id`),
UNIQUE KEY `name_unique` (`name`),
KEY `account_id` (`account_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
Thank God becouse i see soemone with a usefull post....
- - - Updated - - -
Command: Update
Updated: .-Game\src\com\gameserver\network\aion\serverpackets\SM_SELL_ITEM.java
Added: .-Game\src\com\gameserver\model\instance\instancereward\GenericInstanceReward.java
Updated: .-Game\data\static_data\portals\portal_loc.xml
Updated: .-Game\data\static_data\portals\portal_template2.xml
Updated: .-Game\data\static_data\quest_data\quest_data.xsd
Updated: .-Game\data\static_data\quest_data\quest_data.xml
Updated: .-Game\data\static_data\world_maps.xml
Updated: .-Game\data\static_data\spawns\Npcs\600070000_Idian_Depths.xml
Updated: .-Game\data\static_data\spawns\Npcs\600060000_Danaria.xml
Added: .-Game\data\static_data\spawns\Instances\600080000_Live_Party_Concert_Hall.xml
Added: .-Game\data\static_data\spawns\Instances\301000000_Experimentiergefangnis.xml
Deleted: .-Game\data\static_data\spawns\Instances\301110000_Danuar_Reliquary.xml
Added: .-Game\data\static_data\spawns\Instances\301110000_Danuar_Reliquary.xml
Added: .-Game\data\static_data\spawns\Instances\300480000_Danuar_Mysticarium_Solo.xml
Added: .-Game\data\static_data\spawns\Instances\300590000_Ophidan_Bridge.xml
Added: .-Game\data\static_data\spawns\Instances\300540000_The_Eternal_Bastion.xml
Added: .-Game\data\static_data\spawns\Instances\301210000_Ophidan_Bridge_War.xml
Added: .-Game\data\static_data\spawns\Instances\300580000_Void_Cube.xml
Updated: .-Game\data\static_data\quest_script_data\sillus_danuar_mysticarium.xml
Updated: .-Game\data\static_data\quest_script_data\hero.xml
Updated: .-Game\data\static_data\quest_script_data\theobomos.xml
Updated: .-Game\data\static_data\quest_script_data\pradeth_idgel_research_center.xml
Updated: .-Game\data\static_data\quest_script_data\eltnen.xml
Updated: .-Game\data\static_data\quest_script_data\ophidan_bridge.xml
Updated: .-Game\data\static_data\quest_script_data\silona_void_cube.xml
Updated: .-Game\data\static_data\quest_script_data\danuar_reliquary.xml
Updated: .-Game\data\static_data\quest_script_data\infinity_shard.xml
Updated: .-Game\data\static_data\quest_script_data\idian_depths.xml
Updated: .-Game\data\static_data\quest_script_data\danaria.xml
Updated: .-Game\data\static_data\quest_script_data\the_merry_and_green.xml
Updated: .-Game\data\static_data\quest_script_data\silverine_ltd.xml
Updated: .-Game\data\static_data\quest_script_data\the_eternal_bastion.xml
Updated: .-Game\data\static_data\quest_script_data\sauro_supply_base.xml
Updated: .-Game\data\static_data\quest_script_data\danuar_sanctuary.xml
Updated: .-Game\data\static_data\quest_script_data\reshanta.xml
Added: .-Game\data\scripts\system\handlers\quest\sauro_supply_base
Added: .-Game\data\scripts\system\handlers\quest\sauro_supply_base\_18910TheSauroSupplyBase.java
Added: .-Game\data\scripts\system\handlers\quest\sauro_supply_base\_28910AStabbingInSauro.java
Added: .-Game\data\scripts\system\handlers\quest\danuar_sanctuary
Added: .-Game\data\scripts\system\handlers\quest\danuar_sanctuary\_16983SpecialUnlockingDevice.java
Added: .-Game\data\scripts\system\handlers\quest\danuar_sanctuary\_26980BuriedWithTheirTreasure.java
Added: .-Game\data\scripts\system\handlers\quest\danuar_sanctuary\_16980AncientTomb.java
Added: .-Game\data\scripts\system\handlers\quest\danuar_sanctuary\_26983SpookyActionataDistance.java
Added: .-Game\data\scripts\system\handlers\quest\hero
Added: .-Game\data\scripts\system\handlers\quest\hero\_23524ConquerTheIdgelResearchCenter.java
Added: .-Game\data\scripts\system\handlers\quest\hero\_23530AJustReward.java
Added: .-Game\data\scripts\system\handlers\quest\hero\_13523CompleteTheDanuarMysticarium.java
Added: .-Game\data\scripts\system\handlers\quest\hero\_13525CompleteTheVoidCube.java
Added: .-Game\data\scripts\system\handlers\quest\hero\_13526RulerOfKatalam.java
Added: .-Game\data\scripts\system\handlers\quest\hero\_13524CompleteTheIdgelResearchCenter.java
Added: .-Game\data\scripts\system\handlers\quest\hero\_13527OldSpiritsOldGrudges.java
Added: .-Game\data\scripts\system\handlers\quest\hero\_23523ConquerTheDanuarMysticarium.java
Added: .-Game\data\scripts\system\handlers\quest\hero\_23525ConquerTheVoidCube.java
Added: .-Game\data\scripts\system\handlers\quest\hero\_23526ConquerorOfKatalam.java
Added: .-Game\data\scripts\system\handlers\quest\hero\_23527OldSpiritsOldGrudges.java
Added: .-Game\data\scripts\system\handlers\quest\hero\_13530AHeroReward.java
Updated: .-Game\data\scripts\system\handlers\quest\theobomos\_3013AClueLeftByTheDead.java
Added: .-Game\data\scripts\system\handlers\quest\void_cube
Added: .-Game\data\scripts\system\handlers\quest\void_cube\_28020IntoTheVoid.java
Added: .-Game\data\scripts\system\handlers\quest\void_cube\_18020FromBeneathItStoresThings.java
Added: .-Game\data\scripts\system\handlers\quest\merry_and_green
Added: .-Game\data\scripts\system\handlers\quest\merry_and_green\_49700MeetTheMerryAndGreen.java
Added: .-Game\data\scripts\system\handlers\quest\merry_and_green\_39700IntroducingTheMerryAndGreen.java
Added: .-Game\data\scripts\system\handlers\quest\pradeth_idgel_research_center
Added: .-Game\data\scripts\system\handlers\quest\pradeth_idgel_research_center\_28014CanYouHeartheScreams.java
Added: .-Game\data\scripts\system\handlers\quest\pradeth_idgel_research_center\_18014LightReading.java
Added: .-Game\data\scripts\system\handlers\quest\altgard\_24012AnOminousCrop.java
Updated: .-Game\data\scripts\system\handlers\quest\eltnen\_1346KillingforCastor.java
Added: .-Game\data\scripts\system\handlers\quest\ophidan_bridge
Added: .-Game\data\scripts\system\handlers\quest\ophidan_bridge\_26970FindTheVeraSiegeBallista.java
Added: .-Game\data\scripts\system\handlers\quest\ophidan_bridge\_16970TheOphidanBridge.java
Added: .-Game\data\scripts\system\handlers\quest\danuar_reliquary
Added: .-Game\data\scripts\system\handlers\quest\danuar_reliquary\_26920ForgottenReliquary.java
Added: .-Game\data\scripts\system\handlers\quest\danuar_reliquary\_16920ReliquaryReconaissance.java
Added: .-Game\data\scripts\system\handlers\quest\idian_depths
Added: .-Game\data\scripts\system\handlers\quest\idian_depths\_23618RecordsofThePast.java
Added: .-Game\data\scripts\system\handlers\quest\idian_depths\_13617TomboftheElder.java
Added: .-Game\data\scripts\system\handlers\quest\idian_depths\_23617TomboftheElder.java
Added: .-Game\data\scripts\system\handlers\quest\idian_depths\_13650AllYouNeedIsKinah.java
Added: .-Game\data\scripts\system\handlers\quest\idian_depths\_13613TheOfficersOfferRedux.java
Added: .-Game\data\scripts\system\handlers\quest\idian_depths\_23613TheOfficersOfferRedux.java
Added: .-Game\data\scripts\system\handlers\quest\idian_depths\_13618SeekAndInterpret.java
Added: .-Game\data\scripts\system\handlers\quest\idian_depths\_13616KillTheDead.java
Added: .-Game\data\scripts\system\handlers\quest\idian_depths\_23616KilltheDead.java
Added: .-Game\data\scripts\system\handlers\quest\idian_depths\_13615HyperionUnearthed.java
Added: .-Game\data\scripts\system\handlers\quest\idian_depths\_23615HyperionUnearthed.java
Added: .-Game\data\scripts\system\handlers\quest\danaria
Added: .-Game\data\scripts\system\handlers\quest\danaria\_23038ToTheLandOfTheShugos.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_23558Thetruthaboutthebarrel.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_23024DoneDoneAndOntoTheNextJob.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_23358RorikRequest.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_13061OhWhatAReliefYouBeen.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_13358FasterDaevaKill.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_10092OhRightIdgel.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_23064GoldrinePersonalRecognition.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_10091EvenBalaurGetTheBlues.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_10090IdgelIfYouAskMe.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_23351TobaldRequest.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_13352CeronRequest.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_13051Helpfortheisolated.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_23008AFreshPerspective.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_13359PormeoRequest.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_23359RolfRequest.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_23054AndBusinessIsGood.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_23353TorpinRequest.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_23005NoSimpleTasks.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_23352PreydisRequest.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_23337RingaroundtheDragons.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_23350HervoRequest.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_13028AssistTheOnslaught.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_23561ThoroughSenseofJustice1.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_13356HomerusRequest.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_23016TheDelayedReport.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_13064EmployeeAppreciationDay.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_13350TheyRunFromYou.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_13353PerianderCallsForAid.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_13337ItsJustAnArmy.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_23026LessonsLearned.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_23060PlausibleDeniablity.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_13019OnwardToTheOnslaught.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_13357OurDefenseZoneNow.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_23051SavetheVanguard.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_13355KalennosRequest.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_23355UbeRequest.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_23049ForMyFamilyAll.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_23028PreparationfortheMajorOffensive.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_13038GolderineFreeCityHo.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_23356IgritRequest.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_23061MoveAlongLittleDoggy.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_23354OlafRequest.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_23357HelgaRequest.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_13024FollowTheBlueIdeRoad.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_13354UnluckyThirteen.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_13063GoldrinyerkLimited.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_10093TheKazaIdentity.java
Added: .-Game\data\scripts\system\handlers\quest\danaria\_13351StifasRequest.java
Added: .-Game\data\scripts\system\handlers\quest\danuar_mysticarium
Added: .-Game\data\scripts\system\handlers\quest\danuar_mysticarium\_28000WhatLiesBeneath.java
Added: .-Game\data\scripts\system\handlers\quest\danuar_mysticarium\_18000LizardGoDownTheHole.java
Added: .-Game\data\scripts\system\handlers\quest\verteron\_14012DukakiMischief.java
Updated: .-Game\data\scripts\system\handlers\quest\poeta\_1205ANewSkill.java
Added: .-Game\data\scripts\system\handlers\quest\the_eternal_bastion
Added: .-Game\data\scripts\system\handlers\quest\the_eternal_bastion\_28036InterrogateKvash.java
Added: .-Game\data\scripts\system\handlers\quest\the_eternal_bastion\_18036BastionsAreEternal.java
Added: .-Game\data\scripts\system\handlers\instance\voidcube
Added: .-Game\data\scripts\system\handlers\instance\voidcube\VoidCubeSoloInstance.java
Added: .-Game\data\scripts\system\handlers\instance\voidcube\VoidCubeLegionInstance.java
Added: .-Game\data\scripts\system\handlers\instance\idgelresearchcenter
Added: .-Game\data\scripts\system\handlers\instance\idgelresearchcenter\Idgel_Research_Center_Solo.java
Added: .-Game\data\scripts\system\handlers\instance\idgelresearchcenter\Idgel_Research_Center_Legion.java
Added: .-Game\data\scripts\system\handlers\instance\steelrose\SteelRoseQuartersGroupInstance.java
Added: .-Game\data\scripts\system\handlers\instance\steelrose\SteelRoseQuartersSoloInstance.java
Added: .-Game\data\scripts\system\handlers\instance\danuar\DanuarMysticariumLegionInstance.java
Added: .-Game\data\scripts\system\handlers\instance\danuar\DanuarMysticariumInstance.java
Updated: .-Game\data\scripts\system\handlers\instance\danuar\DanuarReliquaryInstance.java
Updated: .-Game\data\scripts\system\handlers\ai\portals\PortalDialogAI2.java
Updated: .-Game\data\scripts\system\handlers\ai\worlds\WorldBlesserAI2.java
DOWNLOADEBLE AFTER TESTING
Completed: At revision: 1.9.x.x
Quote:
Originally Posted by label5
sure!!! - how about giving you one of my internal organs?
- - - Updated - - -
Modified/trunk./data/static_data/npcs/npc_templates.xml
Modified/data/static_data/spawns/Bases/600050000_Katalam.xml
Modified/trunk/data/static_data/spawns/Bases/600060000_Danaria.xml
Modified/trunk/data/static_data/spawns/Instances/301140000_Danuar_Sanctuary.xml
Modified/trunk/data/static_data/spawns/Npcs/600060000_Danaria.xml
Modified/trunk/data/static_data/spawns/Npcs/600070000_Idian_Depths.xml
Modified/trunk/data/static_data/spawns/Sieges/600050000_Katalam.xml
Modified/trunk/data/static_data/spawns/Sieges/600060000_Danaria.xml
90% skills buged
got it all working first off your db is trash sql incomplete files half the size they should be quests utterly screwed it would take more time to fix this then it would to build a new emu game is not worth 1 year fixing to get it decent go for another 4.5 emu if u want something proper no offense to the author i know everyone has to learn it's just know what ur putting out before u put it out there when it is nowhere near complete it turns into the same thing as false advertisement i wouldn't of wrote this message if it was even 50 percent working but it's not it has no worth
nice comment man..release useless emu..about this "can u share? the source for fix ingameshop toll and ap..:cool:" naa i just pretend need his help but not!!...my emu works then him...
@ label5
You got world db error because your player table on "al_server_gs" not set correctly.
Fast way to fix world db error is delete your "al_server_gs.
Download latest al_server_gs.sql from ALR SVN and export to you database server.
about abyss point you might need to update your files to latest engine (WC Revision 197) and rebuild because it's worked for me. or you can download this AL-Reload R-197 no-geo.
https://fbcdn-sphotos-b-a.akamaihd.n...44783979_n.jpg
fix them , and share .
- - - Updated - - -
great than you share a free 145% working server files we all want.
- - - Updated - - -
you are very welcome ....
- - - Updated - - -
thank you.
What a great post @soulsimbol
thx in advance :thumbup1:
ok ill take same release you took show u how to release a proper sql and how to fix ur basic stuff and then after i dont want to see another release this bad from you again
for leah arm fix go to npc templates find leah delete her template replace with <npc_template npc_id="203725" level="40" name="leah" name_id="351406" height="1.44" title_id="350442" rank="DISCIPLINED" rating="NORMAL" race="ELYOS" tribe="GENERAL" type="GENERAL" ai="general" srange="10" adelay="2000" hpgauge="3"> <stats maxHp="9426" maxXp="4015" main_hand_attack="375" main_hand_accuracy="928" pdef="880" mresist="928" power="300" evasion="928" accuracy="920" walk_speed="1.3" run_speed="6" run_speed_fight="4.2" />
<equipment>
<item>110000001</item>
<item>111000001</item>
<item>114000001</item>
</equipment>
<bound_radius front="0.2" side="0.28" upper="1.44" />
<talk_info distance="5" is_dialog="true" />
</npc_template>
Allright, allright i get it, you are smarter than anyone from this thread.
And you really dont wanna see one of my threads, get your ALT+F4 and call it "relaxation"
REQUEST THIS THREAD CLSOED.
REASON? = too many bad facts, low resolution.
Thank you.