guys molis katevasa to pack tou vago123 (felonbig) gia na to testarw..ekana install tin db xwris kanena problima bla bla bla kai molis piga na anoi3w to gameserver m egrafe auto kai kolage ekei..
at org.springframework.beans.AbstractPropertyAccessor.setPropertyValues(
AbstractPropertyAccessor.java:74)
at org.springframework.beans.AbstractPropertyAccessor.setPropertyValues(
AbstractPropertyAccessor.java:57)
at org.springframework.beans.factory.support.AbstractBeanFactory.applyPr
opertyValues(AbstractBeanFactory.java:840)
at org.springframework.beans.factory.support.AbstractAutowireCapableBean
Factory.applyPropertyValues(AbstractAutowireCapableBeanFactory.java:1026)
at org.springframework.beans.factory.support.AbstractAutowireCapableBean
Factory.populateBean(AbstractAutowireCapableBeanFactory.java:809)
at org.springframework.beans.factory.support.AbstractAutowireCapableBean
Factory.createBean(AbstractAutowireCapableBeanFactory.java:425)
at org.springframework.beans.factory.support.AbstractBeanFactory$1.getOb
ject(AbstractBeanFactory.java:250)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistr
y.getSingleton(DefaultSingletonBeanRegistry.java:141)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean
(AbstractBeanFactory.java:247)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean
(AbstractBeanFactory.java:161)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.
preInstantiateSingletons(DefaultListableBeanFactory.java:273)
at org.springframework.context.support.AbstractApplicationContext.refres
h(AbstractApplicationContext.java:346)
at org.springframework.context.support.ClassPathXmlApplicationContext.<i
nit>(ClassPathXmlApplicationContext.java:92)
at org.springframework.context.support.ClassPathXmlApplicationContext.<i
nit>(ClassPathXmlApplicationContext.java:77)
at net.sf.l2j.tools.L2Registry.loadRegistry(L2Registry.java:65)
at net.sf.l2j.L2DatabaseFactory.<init>(L2DatabaseFactory.java:61)
at net.sf.l2j.L2DatabaseFactory.initInstance(L2DatabaseFactory.java:152)
at net.sf.l2j.gameserver.GameServer.<init>(GameServer.java:137)
at net.sf.l2j.gameserver.GameServer.main(GameServer.java:407)
SEVERE Recipes: Error loading C:\Documents and Settings\4324234234234\╬Χ╧Α╬╣╧Η╬υ
╬╜╬╡╬╣╬▒ ╬╡╧Β╬│╬▒╧Δ╬ψ╬▒╧Γ\server\L2_GameServer_IL\target\l2j-gameserver\dist\dat
a\recipes.xml !
SEVERE Recipes: Error while reading C:\Documents and Settings\4324234234234\╬Χ╧Α
╬╣╧Η╬υ╬╜╬╡╬╣╬▒ ╬╡╧Β╬│╬▒╧Δ╬ψ╬▒╧Γ\server\L2_GameServer_IL\target\l2j-gameserver\di
st\data\recipes.xml !
INFO Recipes: Loaded 0 recipes.
SEVERE Extractable items data: Can not find 'C:\Documents and Settings\432423423
4234\╬Χ╧Α╬╣╧Η╬υ╬╜╬╡╬╣╬▒ ╬╡╧Β╬│╬▒╧Δ╬ψ╬▒╧Γ\server\L2_GameServer_IL\target\l2j-game
server\dist/data/extractable_items.csv'
==============================================================-[ Preparations ]
INFO Preparations: done
=====================================================================-[ World ]
INFO RandomIntGenerator: initialized
INFO L2World: Setting up World Regions
INFO L2World: (87 by 128) World Region Grid set up.
INFO data/announcements.txt doesn't exist
INFO Cleaned 0 elements from database.
INFO ThreadPoolManager: io:2 generalPackets:4 general:4 ai:6
INFO IDFactory: 102912 id's avaliable.
INFO IdFactory: Free ObjectID's remaining: 1879048191
Exception in thread "main" java.lang.NullPointerException
at net.sf.l2j.gameserver.instancemanager.MapRegionManager.load(MapRegion
Manager.java:94)
at net.sf.l2j.gameserver.instancemanager.MapRegionManager.<init>(MapRegi
onManager.java:84)
at net.sf.l2j.gameserver.instancemanager.MapRegionManager.getInstance(Ma
pRegionManager.java:77)
at net.sf.l2j.gameserver.GameServer.<init>(GameServer.java:163)
at net.sf.l2j.gameserver.GameServer.main(GameServer.java:407)
Hello.
This code works well. It removes buff with double click, but If you preffer remove buff with ALT + mouse click, place this code in AbnormalStatusWnd.uc
function OnLButtonDown(WindowHandle a_WindowHandle, int X, int Y)
{
local Rect windowBounds;
local int targetRow;
local int targetCol;
local StatusIconInfo info;
local SkillInfo skillInfo;
if (IsKeyDown(IK_alt) == false)
return;
// Find window position
windowBounds = Me.GetRect();
// Process clicks outside of window frame only
if (X > (windowBounds.nX + NSTATUSICON_FRAMESIZE))
{
// Calc row and col of targeted icon
targetRow = (Y - windowBounds.nY) / NSTATUSICON_SIZE;
targetCol = (X - windowBounds.nX - NSTATUSICON_FRAMESIZE) / NSTATUSICON_SIZE;
// Store status info of targeted icon
StatusIcon.GetItem(targetRow, targetCol, info);
// Store actual skill info and make sure it is exists
if (GetSkillInfo(info.ClassID, info.Level, skillInfo))
{
// Request server to stop skill effect
// Usage: _dispel:<int:skill_id>,<int :skill_level>
// Example: _dispel:313,8
RequestBypassToServer ( "_dispel:" $ string ( skillInfo. SkillID ) $ "," $ string ( skillInfo. SkillLevel ) ) ) ;
}
}
}
Question
~Pants0*~
guys molis katevasa to pack tou vago123 (felonbig) gia na to testarw..ekana install tin db xwris kanena problima bla bla bla kai molis piga na anoi3w to gameserver m egrafe auto kai kolage ekei..
3 answers to this question
Recommended Posts