Jump to content
  • 0

Custom all-in-one NPC


Question

Posted (edited)

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

5 answers to this question

Recommended Posts

Posted

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>",...})
Posted

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..

Posted

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

Posted (edited)

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
Posted
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...

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...