• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

L2J [Help] Summons not working

Status
Not open for further replies.
Newbie Spellweaver
Joined
Dec 8, 2006
Messages
12
Reaction score
0
yes i tried search, couldnt find anything bout this

dunno whats wrong really, all other skills work fine except the summons

no summon works, except cubes x/

the pets do work normally but when i try to summon a Dark Panther (for example)
it does the skill and when its done the summon is nowhere to be seen x/
dont get a seperate HP/MP bar for the summon either

I'm using Panthers server package (wich is full of bugs and glitches) managed to fix all except the summons

so if someone could help me out, please do so =)

regards, Shadow Majestic
 
Custom Title Activated
Loyal Member
Joined
May 23, 2006
Messages
1,897
Reaction score
1
change execution priority :)
ctrl alt del
proccesses
java.exe x2 right click > priority > high/above normal/whatever

this fixes most of the bugs connected with skills etc
 
Upvote 0
Newbie Spellweaver
Joined
Dec 8, 2006
Messages
12
Reaction score
0
linux doesnt have windows problems

and it worked befor on a clean l2j install with the same java im using now
but in panthers pack it just doesnt seem to work :x

maybe a config error or sumtin, meh
 
Upvote 0
Junior Spellweaver
Joined
May 4, 2005
Messages
119
Reaction score
0
Maybe this works .. i just searched Linux Priority :

I believe you can do it by using the renice command

Code:
renice -20 <pid>

renice sets the process priority, -20 being the highest priority (realtime) and 19 (low priority)

so, renice -20 and whatever the process id of the java process is on linux, then renice -19 for whatever the server process id is.

To get the process ID of the process(if you know the name of it) type:

Code:
ps -ax |grep <processname>
ex. ps -ax |grep java

you should get something like so:

Code:
534 ttyl S 0:00 java

then type

Code:
renice -20 534

and that will set the java priority to realtime

if you don't know the process name you can get a full list of processes using the ps command and that will show you all of the current processes and their IDs
 
Upvote 0
Newbie Spellweaver
Joined
Dec 8, 2006
Messages
12
Reaction score
0
thx for the tip

but nope, didnt work, tried different settings, on both login and gameserver... but nope, no chances x/
-
root 4825 0.0 0.0 2872 1336 pts/0 S 05:51 0:00 /bin/bash ./GameServer_loop.sh
root 4830 3.1 21.9 755924 340868 pts/0 Sl 05:51 1:04 \_ java -Xmx512m -cp ibmaio.jar:bsf.jar:javolution.jar:bsh-2.0.jar:jython.j
root 4847 0.0 0.0 2872 1336 pts/0 S 05:51 0:00 /bin/bash ./LoginServer_loop.sh
root 4852 0.6 1.6 269512 25584 pts/0 Sl 05:51 0:12 \_ java -Xmx64m -cp javolution.jar:c3p0-0.9.0.4.jar:mysql-connector-java-3.
great:/home/linuana/Server/gameserver# renice -20 4852
4852: old priority 0, new priority -20
great:/home/linuana/Server/gameserver# renice -20 4830
4830: old priority 0, new priority -20
great:/home/linuana/Server/gameserver#

damnit, why did i freaking changed from a clean l2j that worked fine to sum buggy variation package... NONE OF THEM WORK!!! the only one i even got running properly was Panthers... but its bugged like hell, dont wanna change back to clean l2j cuzz i'd be losing all my work so far x(

so please.. if anyone knows a fix for the summons, i'd appreciate it that your saving me days of work =)
 
Last edited:
Upvote 0
Junior Spellweaver
Joined
May 4, 2005
Messages
119
Reaction score
0
thx for the tip

but nope, didnt work, tried different settings, on both login and gameserver... but nope, no chances x/


damnit, why did i freaking changed from a clean l2j that worked fine to sum buggy variation package... NONE OF THEM WORK!!! the only one i even got running properly was Panthers... but its bugged like hell, dont wanna change back to clean l2j cuzz i'd be losing all my work so far x(

so please.. if anyone knows a fix for the summons, i'd appreciate it that your saving me days of work =)

What pack and version are you trying to use now ?
 
Upvote 0
Custom Title Activated
Loyal Member
Joined
May 23, 2006
Messages
1,897
Reaction score
1
linux doesnt have windows problems

and it worked befor on a clean l2j install with the same java im using now
but in panthers pack it just doesnt seem to work :x

maybe a config error or sumtin, meh
you didnt tell that you are using linux :smilie4:
 
Upvote 0
Newbie Spellweaver
Joined
Dec 23, 2005
Messages
72
Reaction score
0
The problem is in the xml files in the Skills folder. Look in your database and you will see that every summon NPC has changed but the skills haven't been fixed with the new NPC ID's. You have to manually correct this in your .xml files.

For example Siege Golem: <table name="#npcIds"> 14767 </table>
Or Wild Hog Cannon: <set name="npcId" val="14798"/>

You can find these IDs in the NPC table in your L2JDB.
 
Upvote 0
Newbie Spellweaver
Joined
Dec 8, 2006
Messages
12
Reaction score
0
@khadia, idd and so far im kinda shocked on how much l2j servers are actually hosted on windows =D even though l2j is actually designed on windows, im not having any windows problems like ppl have that use it on windows :p

@dreni, hmm that could be it, i'll have a look into that, thx =)

@darkrage, dunno, latest one i could download (week ago or so)
but with ur package i cant create a character (even with the updates) due to sum weird errors :x Xp
 
Upvote 0
Custom Title Activated
Loyal Member
Joined
Jun 8, 2006
Messages
1,030
Reaction score
0
Please use the Prefix [Help] in front of the subject of you topic..

thanks
 
Upvote 0
Custom Title Activated
Loyal Member
Joined
May 23, 2006
Messages
1,897
Reaction score
1
@khadia, idd and so far im kinda shocked on how much l2j servers are actually hosted on windows =D even though l2j is actually designed on windows, im not having any windows problems like ppl have that use it on windows :p
L2j is designed for JAVA and mySQL not for windows
java is crossplatform
 
Upvote 0
Newbie Spellweaver
Joined
Dec 8, 2006
Messages
12
Reaction score
0
@kost, sorry forgot :p

@khadia, errr, o rly?
let me put it this way

l2j is designed on java FOR windows

there is almost no linux support for l2j anywhere x( but thank god linux rocks and lets windows build thingy's work on linux aswell mostly
 
Upvote 0
Custom Title Activated
Loyal Member
Joined
May 23, 2006
Messages
1,897
Reaction score
1
l2j is not designed for windows
and i agree that there isnt support for linux in l2j
 
Upvote 0
Joined
May 5, 2006
Messages
769
Reaction score
0
Well it doen't have many differencies between linux-windows as far as server files and bugs are concerned,
by the time you will have the server running after that its apparently the same to edit/modify them...
meaning fix for example the summons problem
 
Last edited:
Upvote 0
Status
Not open for further replies.
Back
Top