Jump to content
  • 0

NPC For noblesse and sub-class


Question

Posted

Can some1 tell me how can i spawn a npc which makes me noblesse and sub-class?And can any1 tell me how can i buff myself (superhaste buff,zarich)

Sorry 4 my bad english

Thanks in advance  ;D

11 answers to this question

Recommended Posts

  • 0
Posted

I see..No1 know it..So can i ask something else?In my server the packet is by killer_007 buffs are 20 minutes and dance-songs 2 minutes,how can i change it ???

  • 0
Posted

I see..No1 know it..So can i ask something else?In my server the packet is by killer_007 buffs are 20 minutes and dance-songs 2 minutes,how can i change it ???

set

  <effect count="1" name="Buff" time="15" val="0"> (this is 15 seconds)

to

 

  <effect count="1" name="Buff" time="3600" val="0"> (this is 1 hour)

  • 0
Posted (edited)

1) NOBODY CAN PROMISE YOU THAT IF YOU POST SOMETHING WILL GET AN ANSWER WITHIN 5 HOURS... Go and pay for instant support if you want such a thing...

2) Do not double post wtf do ya think... If you double post, your thread and get an answer faster? I will ask -1 instantly for double posting at the mods section 🙂

3) Just go to the respected NPC, if you know his name use //spawn <npc name/id>

4) //add_skill <skill ID>

5) Use the daaaaaaaaamn search buttooooooooooon, this is the... 100th question about that?

Edited by Vision
  • 0
Posted (edited)
On 7/31/2007 at 9:49 PM, killer_007 said:

1) NOBODY CAN PROMISE YOU THAT IF YOU POST SOMETHING WILL GET AN ANSWER WITHIN 5 HOURS... Go and pay for instant support if you want such a thing...

2) Do not double post wtf do ya think... If you double post, your thread and get an answer faster? I will ask -1 instantly for double posting at the mods section 🙂

3) Just go to the respected NPC, if you know his name use //spawn <npc name/id>

4) //add_skill <skill ID>

5) Use the daaaaaaaaamn search buttooooooooooon, this is the... 100th question about that?

 

Ask maxtor to paint the search button in red color ;D ;D ;D

Edited by Vision
  • 0
Posted (edited)
On 7/31/2007 at 9:48 PM, Izzy said:

set

  <effect count="1" name="Buff" time="15" val="0"> (this is 15 seconds)

to

 

  <effect count="1" name="Buff" time="3600" val="0"> (this is 1 hour)

Where i must set them?

Quote

1) NOBODY CAN PROMISE YOU THAT IF YOU POST SOMETHING WILL GET AN ANSWER WITHIN 5 HOURS... Go and pay for instant support if you want such a thing...

2) Do not double post wtf do ya think... If you double post, your thread and get an answer faster? I will ask -1 instantly for double posting at the mods section 🙂

3) Just go to the respected NPC, if you know his name use //spawn <npc name/id>

4) //add_skill <skill ID>

5) Use the daaaaaaaaamn search buttooooooooooon, this is the... 100th question about that?

Sorry if i made u angry..I forgot to use search button..Also i don't know the name of the npc 😕

Edited by Vision
  • 0
Posted

:o guys come on dont act like that y dont u try to help a bit?.. anyways im gonna try to help... first: for a npc which makes u noblesse and sub-class i think u must make it yoursealf.. if u already have one serch its id at ur database... second: i didnt quite understand what u mean here.."And can any1 tell me how can i buff myself (superhaste buff,zarich)"  :-\ .. third.. to change buff time go to ur server/gameserver/data/stats/skills ... use this site to find buff's id http://hnt1.net/id/ .. if for example u want chant of victory u write that to the site and it will tell u its id is "1363" so u open the 1300-1399.xml .. press alt+f and write 1363.. scroll down a bit til u find this line <effect count="1" name="Buff" time="28800" val="0" stackOrder="1" stackType="CoV">

 

the number 28800 is the buffs time.. its in seconds if im not mistaken  ;)

 

28800= 8 hours if again im not mistaken...  :-X

 

hope that helped  ;)

  • 0
Posted

Can some1 tell me how can i spawn a npc which makes me noblesse and sub-class?And can any1 tell me how can i buff myself (superhaste buff,zarich)

Sorry 4 my bad english

Thanks in advance  ;D

 

1)Flare has the best NPC for your matter!!!it is a costum NPc and OF COURSE YOU CAN ALWAYS MAKE ONE FOR YOURSELF there is a thread about it already...

2)//add_skill 7029 or //admin--->character list--->find the desired name--->skills--->add skill--->skill ID:7029 lvl:4 for super haste

  • 0
Posted

Thank u very much guys!!Also u didn't answer,how can i be Noblesse?Can i spawn a Npc or with admin panel?

Guest
This topic is now closed to further replies.


  • Posts

    • fixed the flickering , if you noticed to an other specific page please let me know
    • And Discord: https://discord.gg/3aYqWNqb
    • Ofc: https://discord.gg/3aYqWNqb
    • You can find some H5 skins shared in old L2 modding Discords, but most of the higher‑quality ones are either paid or come bundled with full client edits. I usually mix in commissioned work and whatever I can patch myself. On a side note, I fund a lot of these commissions by selling off game items through instant sell cs2 skins, which has been a quick way for me to get some cash for projects.
    • There is no need for gRPC in this case, even tho originally it was gRPC based but since we don't need it to be bi-directional, we switched to simple http requests for the web calls and SSEs for the data streamed from the server. There are distributed locks in place to precent race conditions between actions that can happen between multiple web instances and the server.   Local models can also be slow depending on the model, and most external models can actually be faster than local ones if you use Flash 2.5 or something along those lines. I am running on 512GB of Unified Memory on my Mac Studio M3 Ultra so the speed of the local model for a small model is pretty good but I tested it with Gemini too and it works equally as fast and in some cases faster. The way it works is that I'm using pgvector (one of the benefits of moving to Postgres) to search the data and see what the player can see etc and there is some batching of the next few actions for 2-4 seconds for the user until the next LLM request fires. The batching also includes branching on logic so if they for example fall under some HP they will move to kiting instead of attacking or maybe they heal etc.   Everything is authed and permission-based. The server and the backend of the frontend have secure communication between them, either with a symmetric key (not recommended for production) or a certificate (the recommended way), so there is no worry. It's all tied to the account's access level, etc., so nobody can make an action that they normally wouldn't be allowed to do. Even the MCP is token-based, and there are prompt injection protections in place. The MCP is audited, and every mutation needs confirmation. The admin area is only accessible to the admin account anyway so normal users can't access it.  
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..