Jump to content
  • 0

Custom all-in-one NPC


stydianx

Question


  • Group:  Members
  • Topic Count:  105
  • Topics Per Day:  0.02
  • Content Count:  390
  • Reputation:   27
  • Joined:  07/12/12
  • Last Seen:  

can someone give me a script of a all in one NPC with the following modifications:

1. also give's impositio manus buff when clicked

2. doesn't have stylist.

and a NPC tool dealer which sells:

acid bottle, bottle grenade, medicine bowl, different kinds of arrows.bullets for gunslingers, glistening coat, etc.

thanks :)

Edited by stydianx
Link to comment
Share on other sites

5 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  72
  • Topics Per Day:  0.02
  • Content Count:  2997
  • Reputation:   1131
  • Joined:  05/27/12
  • Last Seen:  

Rather than list what you don't want, write what you do want.

Also, they're quite easy to make:

*menu "<option_text>",<target_label>{,"<option_text>",<target_label>,...};
*select("<option>"{,"<option>",...})
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  105
  • Topics Per Day:  0.02
  • Content Count:  390
  • Reputation:   27
  • Joined:  07/12/12
  • Last Seen:  

Rather than list what you don't want, write what you do want.

Also, they're quite easy to make:

*menu "<option_text>",<target_label>{,"<option_text>",<target_label>,...};
*select("<option>"{,"<option>",...})

your the one who made the all in one npc right :))

i would just want impositio manus to be added on the buff when you click the NPC, and that

i want the stylist menu to be removed..

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10015
  • Reputation:   2350
  • Joined:  10/28/11
  • Last Seen:  

setarray .MainMenu$[0], // Set menu options!
 "Change Jobs",  // [1]
 "Stylist",  // [2]
 "Refiner",  // [4]
 "Remove Cards",  // [8]
 "Exchange Coins", // [16]
 "Rentals",  // [32]
 "Reset Stats/Skills", // [64]
 "Platinum Skills", // [128]
 "Change Sex",  // [256]
 "Identify All";  // [512]

set .MenuOption,1|2|4|8|16|32|64|128|256|512;

remove no.2 in the .MenuOption ....

set .MenuOption,1|4|8|16|32|64|128|256|512;

to add buff to a npc..

sc_start <SC NAME>,<time>,<lv>;

read this...

sc_start

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  105
  • Topics Per Day:  0.02
  • Content Count:  390
  • Reputation:   27
  • Joined:  07/12/12
  • Last Seen:  

setarray .MainMenu$[0], // Set menu options!
 "Change Jobs",  // [1]
 "Stylist",  // [2]
 "Refiner",  // [4]
 "Remove Cards",  // [8]
 "Exchange Coins", // [16]
 "Rentals",  // [32]
 "Reset Stats/Skills", // [64]
 "Platinum Skills", // [128]
 "Change Sex",  // [256]
 "Identify All";  // [512]

set .MenuOption,1|2|4|8|16|32|64|128|256|512;

remove no.2 in the .MenuOption ....

set .MenuOption,1|4|8|16|32|64|128|256|512;

to add buff to a npc..

sc_start <SC NAME>,<time>,<lv>;

read this...

sc_start

i made the script.. but it still not casting the buff

specialeffect2 66; sc_start IMPOSITIO_MANUS,600000,5; }

and i can't find this:

set. menu Option, 1 | 4 | 8| 16 | 32 |... etc ;

Edited by stydianx
Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10015
  • Reputation:   2350
  • Joined:  10/28/11
  • Last Seen:  

SC_IMPOSITIO 35

i made the script.. but it still not casting the buff

specialeffect2 66; sc_start IMPOSITIO_MANUS,600000,5; }

and i can't find this:

refer this ...trunk/db/const.txt

SC_IMPOSITIO 35

Example...

sc_start SC_IMPOSITIO,60000,5;
sc_start 35,60000,5;

and i can't find this:

set. menu Option, 1 | 4 | 8| 16 | 32 |... etc ;

it is inside Euphy All-In-One NPC Script...

Link to comment
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.   Paste as plain text instead

  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.

×
×
  • Create New...