Jump to content
  • 0
Aurora

Custom mob help

Question

error_Mob.jpg

 

NPCIdentity.lub

JT_ADDAX = 10098

 

jobname.lub

[jobtbl.JT_ADDAX] = "ADDAX"

 

Sprite folder

spr_File.jpg

 

mob_db2.txt

3500,ADDAX,ADDAX,ADDAX,1,50,0,2,1,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x131,400,1872,672,480,0,0,0,0,0,0,0,909,7000,1202,100,938,400,512,1000,713,1500,741,5,619,20,0,0,0,0,4001,20

 

Does anyone have any idea how to fix this? TIA!

Share this post


Link to post
Share on other sites

11 answers to this question

Recommended Posts

  • 0

Thank you @@Dastgir for helping. So in this case my mob ID should be 10098?

 

PS: I'm using 2013-12-23c client

He mentioned that your client and server side ID's don't match.

Looking at your NPCidentity.lua you see that the number there isn't equal to what you have in mob_db2.

Change the value in your lua files to what you have in your mob_db2.

 

The maximum mob_id you can use is 3999 from your current range, if you need more ID's, you'll need to continue from 25000

Share this post


Link to post
Share on other sites
  • 0

error_Mob.jpg

 

NPCIdentity.lub

JT_ADDAX = 10098

 

jobname.lub

[jobtbl.JT_ADDAX] = "ADDAX"

 

Sprite folder

spr_File.jpg

 

mob_db2.txt

3500,ADDAX,ADDAX,ADDAX,1,50,0,2,1,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x131,400,1872,672,480,0,0,0,0,0,0,0,909,7000,1202,100,938,400,512,1000,713,1500,741,5,619,20,0,0,0,0,4001,20

 

Does anyone have any idea how to fix this? TIA!

Monster Id and view on client side should match.

Also currently monster are limited to 3999 and in new clients, new range start from 25000.

Share this post


Link to post
Share on other sites
  • 0

 

Thank you @@Dastgir for helping. So in this case my mob ID should be 10098?

 

PS: I'm using 2013-12-23c client

He mentioned that your client and server side ID's don't match.

Looking at your NPCidentity.lua you see that the number there isn't equal to what you have in mob_db2.

Change the value in your lua files to what you have in your mob_db2.

 

The maximum mob_id you can use is 3999 from your current range, if you need more ID's, you'll need to continue from 25000

Thanks@@Tranquility but I tried changing it 25000 and this happen

mob_DB.jpg

Edited by Aurora

Share this post


Link to post
Share on other sites
  • 0

Don't change your mobID from 3500 in your mob_db2. Change your clientside files, namely the NPCIdentity.lua

 

mob_db2.txt3500,ADDAX,ADDAX,ADDAX,1,50,0,2,1,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x131,400,1872,672,480,0,0,0,0,0,0,0,909,7000,1202,100,938,400,512,1000,713,1500,741,5,619,20,0,0,0,0,4001,20
NPCIdentity.lubJT_ADDAX = 3500 jobname.lub[jobtbl.JT_ADDAX] = "ADDAX" 

Share this post


Link to post
Share on other sites
  • 0

 

Don't change your mobID from 3500 in your mob_db2. Change your clientside files, namely the NPCIdentity.lua

 

mob_db2.txt3500,ADDAX,ADDAX,ADDAX,1,50,0,2,1,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x131,400,1872,672,480,0,0,0,0,0,0,0,909,7000,1202,100,938,400,512,1000,713,1500,741,5,619,20,0,0,0,0,4001,20
NPCIdentity.lubJT_ADDAX = 3500 jobname.lub[jobtbl.JT_ADDAX] = "ADDAX" 

Got it working now. I've tried 3998 and it worked. I suppose your suggestion would work as well. Thanks for letting me know the maximum range is 3999. But I wonder why I can't use 25000 as you and @@Dastgir have mentioned. Thanks for your help <3

Share this post


Link to post
Share on other sites
  • 0

 

Don't change your mobID from 3500 in your mob_db2. Change your clientside files, namely the NPCIdentity.lua

 

 

mob_db2.txt3500,ADDAX,ADDAX,ADDAX,1,50,0,2,1,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x131,400,1872,672,480,0,0,0,0,0,0,0,909,7000,1202,100,938,400,512,1000,713,1500,741,5,619,20,0,0,0,0,4001,20
NPCIdentity.lubJT_ADDAX = 3500 jobname.lub[jobtbl.JT_ADDAX] = "ADDAX" 
Got it working now. I've tried 3998 and it worked. I suppose your suggestion would work as well. Thanks for letting me know the maximum range is 3999. But I wonder why I can't use 25000 as you and @@Dastgir have mentioned. Thanks for your help <3
Its for extremely new clients 2014-10++

And currently source doesn't support 25000 mob id,thus you cannot use it xD

Share this post


Link to post
Share on other sites
  • 0

 

 

Don't change your mobID from 3500 in your mob_db2. Change your clientside files, namely the NPCIdentity.lua

 

mob_db2.txt3500,ADDAX,ADDAX,ADDAX,1,50,0,2,1,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x131,400,1872,672,480,0,0,0,0,0,0,0,909,7000,1202,100,938,400,512,1000,713,1500,741,5,619,20,0,0,0,0,4001,20
NPCIdentity.lubJT_ADDAX = 3500 jobname.lub[jobtbl.JT_ADDAX] = "ADDAX" 
Got it working now. I've tried 3998 and it worked. I suppose your suggestion would work as well. Thanks for letting me know the maximum range is 3999. But I wonder why I can't use 25000 as you and @@Dastgir have mentioned. Thanks for your help <3
Its for extremely new clients 2014-10++

And currently source doesn't support 25000 mob id,thus you cannot use it xD

Ohh. Thanks for the information @@Dastgir! More power to you and @@Tranquility:D

Share this post


Link to post
Share on other sites
  • 0

 

 

Don't change your mobID from 3500 in your mob_db2. Change your clientside files, namely the NPCIdentity.lua

 

mob_db2.txt3500,ADDAX,ADDAX,ADDAX,1,50,0,2,1,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x131,400,1872,672,480,0,0,0,0,0,0,0,909,7000,1202,100,938,400,512,1000,713,1500,741,5,619,20,0,0,0,0,4001,20
NPCIdentity.lubJT_ADDAX = 3500 jobname.lub[jobtbl.JT_ADDAX] = "ADDAX" 
Got it working now. I've tried 3998 and it worked. I suppose your suggestion would work as well. Thanks for letting me know the maximum range is 3999. But I wonder why I can't use 25000 as you and @@Dastgir have mentioned. Thanks for your help <3
Its for extremely new clients 2014-10++

And currently source doesn't support 25000 mob id,thus you cannot use it xD

Im using 2013-08-07

 

it's work the same way ?

Share this post


Link to post
Share on other sites
  • 0

 

 

 

Don't change your mobID from 3500 in your mob_db2. Change your clientside files, namely the NPCIdentity.lua

 

mob_db2.txt3500,ADDAX,ADDAX,ADDAX,1,50,0,2,1,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x131,400,1872,672,480,0,0,0,0,0,0,0,909,7000,1202,100,938,400,512,1000,713,1500,741,5,619,20,0,0,0,0,4001,20
NPCIdentity.lubJT_ADDAX = 3500 jobname.lub[jobtbl.JT_ADDAX] = "ADDAX" 
Got it working now. I've tried 3998 and it worked. I suppose your suggestion would work as well. Thanks for letting me know the maximum range is 3999. But I wonder why I can't use 25000 as you and @@Dastgir have mentioned. Thanks for your help <3
Its for extremely new clients 2014-10++

And currently source doesn't support 25000 mob id,thus you cannot use it xD

Im using 2013-08-07

 

it's work the same way ?

I think so, yes.

Share this post


Link to post
Share on other sites
  • 0

 

 

 

Don't change your mobID from 3500 in your mob_db2. Change your clientside files, namely the NPCIdentity.lua

 

mob_db2.txt3500,ADDAX,ADDAX,ADDAX,1,50,0,2,1,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x131,400,1872,672,480,0,0,0,0,0,0,0,909,7000,1202,100,938,400,512,1000,713,1500,741,5,619,20,0,0,0,0,4001,20
NPCIdentity.lubJT_ADDAX = 3500 jobname.lub[jobtbl.JT_ADDAX] = "ADDAX" 
Got it working now. I've tried 3998 and it worked. I suppose your suggestion would work as well. Thanks for letting me know the maximum range is 3999. But I wonder why I can't use 25000 as you and @@Dastgir have mentioned. Thanks for your help <3
Its for extremely new clients 2014-10++

And currently source doesn't support 25000 mob id,thus you cannot use it xD

Im using 2013-08-07

 

it's work the same way ?

Yes it does, I use 2013-08-07 too and have a similar setup.

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.