[Request] Proper NPC Removing + Fixs

08/04/2011 22:14 Ayumilove#1
Hello,

To start off : Yes i used the search button :facepalm:

I would like to know the exact procedure to remove a NPC correctly from the server. Is there a command in-game by targetting a NPC i get it's ID? How could i determine a NPC in the database by it's IG name?

Also, i'd like to know what is wrong with this :

Code:
USE Arcadia

INSERT INTO SkillResource

VALUES(40065,50040065,0,40040065,1,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0.00,0.00,0.00,0.00,0,0,0.00,0. 00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,0,0,1,0.00,0.00,0.00,1.50,0.00,0.00,0 ,0,0,0,0,0,0,0,0,0,41,10008,0,0,0.00,0.00,0.00,0.0 0,0.00,0,0,0,100,0,0,0.00,0,0.00,0.00,0,0,0.0000,0 .0000,0.0000,11.0000,0.0000,0.0000,0.0000,0.0000,0 .0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0. 0000,0.0000,0.0000,0.0000,0.0000,1525,'icon_skill_ passive_0081',0,0.00,0.00)
To finish off, i've read several threads about drop rate settings and gold rate settings and i'd like to know if :

Code:
set game.exp_rate 10
set game.item_drop_rate 200000
set game.drop_rate 10
set game.gold_drop_rate 200000
Stack after a server reboot.

Thanks in advance
08/04/2011 22:47 Cieldaron#2
You need to remove the spaces between the , and 0.

The gold rate will just change how often mobs drop gold, not how many gold they drop.
I posted a tutorial on how to change how many gold they drop.
[Only registered and activated users can see links. Click Here To Register...]

Greez,

Cieldaron
08/04/2011 22:51 lawlywood#3
not they dont stack, afaik. i dont think the server is writing anithing to the eop file, so the server sets the rates given in the gameserver.opt. Just edit them in the gameserver.opt and compress it again
08/04/2011 23:41 Ayumilove#4
Thanks, and what about despawning an existing NPC?
08/05/2011 00:24 ismokedrow#5
Stop being a beggar. Every single question you have asked thus far has been answered numerous times. If you can't figure out basic operations for a server without begging you don't need to be running a server.
08/05/2011 06:31 Ayumilove#6
Quote:
Originally Posted by ismokedrow View Post
Stop being a beggar. Every single question you have asked thus far has been answered numerous times. If you can't figure out basic operations for a server without begging you don't need to be running a server.
I found the thread : [Only registered and activated users can see links. Click Here To Register...]

I'm also learning on the ground with examples, one day or the other i'lll be abble to fix stuff by my own and help other people too. Stop being cold hearted please thanks.
08/05/2011 06:44 ironhammer500#7
To remove npcs u can just set their flag to 0 just make sure you find the correct npc.

in Arcadia, npcresouce
08/05/2011 06:53 RoflcopterGoesSoiSoiSoi#8
Flag[0] = Enable
Flag[65xxx] = Disable (reference Angel/Witch NPCs for the exact flag number)
08/05/2011 06:56 ironhammer500#9
Quote:
Originally Posted by RoflcopterGoesSoiSoiSoi View Post
Flag[0] = Enable
Flag[65xxx] = Disable (reference Angel/Witch NPCs for the exact flag number)
Could of sworn its the other way around lol but yea that flag number is best way to remove them.
08/05/2011 10:05 Ayumilove#10
I set the flag to 0 but the NPC is still here... By the way i don't want to disable their scripts or what ever, i simply want to remove them completely (Script + Spawn)

Thanks