EOSERV Forum > Seose > Npc Editing (guide)(seose)
Topic is locked.
Page: << 1 2 >>
Npc Editing (guide)(seose)
Author Message
Post #29006 Npc Editing (guide)(seose)

   First off you might need to go the the following website to grab all you npc,items,and spell id's

http://guide.endless-online.info/

   Next to edit what npc do (say,sell,drop,ect) you must go to your seose folder>data>npc.xini

Below is a random npc that has all of the npc options available.

Below that is a guide explaining what all of them do. 


/* Random Guy */

  [npc543]

  {

    [vocab] Chance=5 {What Am i gonna say??}

    [drop] Item=1 MinCount=10 Maxcount=100 Chance=4

    [shop] Item=1 Sell=2 Buy=4

    [craft]

    {

      Item = 1

      [ingredient] Item=2 Ammount=1

    }

    [spell]

    {

      ID   = 1

      Cost = 10 

      [requires]

      {

      }

    }

    [home]

    {

      Name = "Citizen of Estaq"

      Map  = 48

      X    = 40

      Y    = 10

      [question] question="By whome was Estaq illusion master named Hitaru cursed?" 

answer="apozen"

    }

  }


"/* Random Guy */" is Your npc name (editing this will not change anything ingame.)

"[npc543]" Is your npc id (Do not change.)

"{"-starts "}"-ends   Brackets (DONT DELETE!!!)

"[drop]" what the npc will drop

"[shop]" what the npc will sell (must be a shop npc)

"[craft]" What the npc will let you caft. (must be a shop npc)

"[vocab]" what the npc will say

"[ingredient]" Stuff need to caft that item (can have up to 4 ingredients anymore might cause problems)

"[spell]" Allows npc to teach a players a spell

"[requires]" Any requirements need to learn the spell

"[home]" Allows npc to set your Home

"[question]" allows npc to ask a question

"Item=1 " item ID of the npc will drop or sell

"MinCount=10"  min ammount of the item npc wil drop

"Maxcount=100"  max ammount of the item npc can drop

"Chance=4" How often something will come up (lower=rarely high=all the time)

"Buy" what price the shop will buy back the item

"Sell" What price the shop sells the item

"ID" Spell id

"Cost" How  much it cost to learn the spell

"answer" the answer to what ever question the npc asked.

I hope my guide will help you if you need any help just ask
Also if there is anything i missed let me know i'll fix it.

Sorry for such a long post.

~korlen
16 years, 25 weeks ago
Post #29008 Re: Npc Editing (guide)(seose)

Good guide but in case you or anyone else doesent know for the...

[drop] Item=1 MinCount=??? MaxCount=???

You dont need to put the Item=1 for gold drop. You can just put the Mincount and max Counts.

Also another thing you can put in the guide would be the way you can make the shops buy items.

[shop] Item=365 Buy=50

That line tells the server that the shop is buying Gun (Item 365) for 50 gold. Im sure you knew about that but i said it incase u or anyone else didnt know that. Cause what server is good without those shops buying ur nasty monster drops Lol.

---
Owner of Endless Online Insanity
Looking for: 2 Artists
Darkrulerjoe
16 years, 25 weeks ago
Post #29010 Re: Npc Editing (guide)(seose)
Sacred Phoenix posted: (1st Jan 2010 12:07 am)

Good guide but in case you or anyone else doesent know for the...

[drop] Item=1 MinCount=??? MaxCount=???

You dont need to put the Item=1 for gold drop. You can just put the Mincount and max Counts.

Also another thing you can put in the guide would be the way you can make the shops buy items.

[shop] Item=365 Buy=50

That line tells the server that the shop is buying Gun (Item 365) for 50 gold. Im sure you knew about that but i said it incase u or anyone else didnt know that. Cause what server is good without those shops buying ur nasty monster drops Lol.

Ok ill be sure to add it

And i was useing 1 as an example 
but if you use something like a goat horn if you wanna have the goat drop only 2 goat horns at a time then you do the following

  /* Goat */
  [npc7]
  {
    [drop] Item=258 MinCount=2 Maxcount=2 Chance=5
  }

Thank for letting me know about the buy option
16 years, 25 weeks ago
Post #29034 Re: Npc Editing (guide)(seose)

hey can u show me how to make the rats and crows drop like 10k of gold and 20k of gold at a time 100%?

16 years, 25 weeks ago
Post #29040 Re: Npc Editing (guide)(seose)
eohax posted: (1st Jan 2010 10:25 am)

hey can u show me how to make the rats and crows drop like 10k of gold and 20k of gold at a time 100%?



Wait what?
are you saying that they drop either 10k or 20k or are you saying that you want them to drop 10-20k of gold everytime?

and yes i'll show you just explain it alittle better for me.

16 years, 25 weeks ago
Post #29048 Re: Npc Editing (guide)(seose)

10-20k at a time but at the rate of 100%

16 years, 25 weeks ago
Post #29050 Re: Npc Editing (guide)(seose)
eohax posted: (1st Jan 2010 01:44 pm)

10-20k at a time but at the rate of 100%


Ok well your drop rate is normaly 100 with seose,every zero after that 100 add a zero to drop rate (what ever your chance is)

example 
if you drop rate was 100 and your chance was at 5 then you gonna get the item 5% of the time as a drop.
but if your drop rate becomes 1000 your chance will become 50  then your gonna get the item the npc drops 50% of the time

and SO on.

just leave your drop rate at 100%

but here is your crow and rats

/* Crow */
  [npc1]
  {
    [drop] Item=1 MinCount=10000 Maxcount=20000 Chance=100
  }

/* Rat */
  [npc2]
  {
    [drop] Item=1 MinCount=10000 Maxcount=20000 Chance=100
  }
16 years, 25 weeks ago
Post #29101 Re: Npc Editing (guide)(seose)

I would just like to add this 2 help ppl cuz this problem happened to me. If you downloaded seose a while ago u may find that you npc's wont drop, even if you type the drops how you are suppose to. If this is the case just go download seose bin 2.7b and take the npc's file from what you just downloaded and put that npc file in place of your old one, hope this helps :D.

16 years, 25 weeks ago
Post #29108 Re: Npc Editing (guide)(seose)
Drakenair posted: (2nd Jan 2010 04:37 am)

I would just like to add this 2 help ppl cuz this problem happened to me. If you downloaded seose a while ago u may find that you npc's wont drop, even if you type the drops how you are suppose to. If this is the case just go download seose bin 2.7b and take the npc's file from whatyoujustdownloaded and put that npc file in place of your old one, hope this helps :D.

do you even know what your talking  about -.-
this doesnt help any user what so ever.
there is nothing wrong with the so called "npc file" your talking about. 

you just have to know what your doing if you dont you need to ask for help.

and to translate what he just said "Make sure you have the most up to date seose files" located at http://sordie.co.uk/

16 years, 25 weeks ago
Post #29129 Re: Npc Editing (guide)(seose)


Hey i got a problem with this i wanna make my priest into a monster drops 300 gold 70% chance for drop and heres my drop file for my priest/* Priest */
[npc114]
{
[drop] MinCount=300 Maxcount=300 Chance=70
}
?? is that correct or?? and i also putted priest down to   /* Combat NPCS ------------------------------------------------------------ */

16 years, 25 weeks ago
Post #29141 Re: Npc Editing (guide)(seose)
matiasmunk posted: (2nd Jan 2010 08:53 am)


Hey i got a problem with this i wanna make my priest into a monster drops 300 gold 70% chance for drop and heres my drop file for my priest/* Priest */
[npc114]
{
[drop] MinCount=300 Maxcount=300 Chance=70
}
?? is that correct or?? and i also putted priest down to   /* Combat NPCS ------------------------------------------------------------ */


shouldn't have moved him...
what you need to do is play him back where he belongs and go to your .enf pub file and open it with rena's pubeditor and find priest and change him to non-aggressive npc type and then you can add all of his stats.

there you go im not sure if this will help you i havnt tryed makeing normal npc's drop stuff ill edit this post when or if i do.
16 years, 25 weeks ago
Post #29180 Re: Npc Editing (guide)(seose)

Hey Korlen are you from the U.S? Do u speak english if so you can undertsand wat i said, and if an admin wants to tell me wat i said was stupid go ahead but i dont have 2 take crap from you. I've read some of your posts confusing much.

16 years, 25 weeks ago
Post #29181 Re: Npc Editing (guide)(seose)
Drakenair posted: (2nd Jan 2010 08:44 pm)

Hey Korlen are you from the U.S? Do u speak english if so you can undertsand wat i said, and if an admin wants to tell me wat i said was stupid go ahead but i dont have 2 take crap from you. I've read some of your posts confusing much.


i know im confuseing sometimes -.- so what ;p and your right you dont have to take crap from me that why you just have to ignore people sometimes.yes i speak english.

BUT were getting off topic partly my fault,so please any of you who read the guide and have a question please post it. i might be able to help.(more then likely)
16 years, 25 weeks ago
Post #31051 Re: Npc Editing (guide)(seose)

I've changed it so non-combat people (E.G. Priest) Can attack you. All you have to do is go to the .Enf file, open it with renas pubeditor, and find the priest.

Now, Find the tab that says NPC look at the priests, it should either be 0 or something like 9 or something. Change that to 1 so people can attack it and it wont attack until someone attacks it, or change it to 2 so it will run up to you and attack you even if you dont attack it first. Then if you want to edit any drops (E.G. Matiasmonk) This is what you put to make the Priest drop 300 gold 70% of the time


/* Priest */
[npc114]
{
[drop] MinCount=300 Maxcount=300 Chance=70
}

Theres also spaces inbetween the lines so just edit your NPC.XINI file instead of copying and pasting this. Hope this helped!!!!
16 years, 22 weeks ago
Post #31146 Re: Npc Editing (guide)(seose)

Nice guide man!

16 years, 21 weeks ago
Page: << 1 2 >>
Topic is locked.
EOSERV Forum > Seose > Npc Editing (guide)(seose)