Dolphin86 Posted September 22, 2015 Posted September 22, 2015 hye guys i would like to request a simple npc script, Feature : 1. save point 2. open storage 3. open guild storage [if the guild master allow the guild member to open them] Thanks For Your Help ! Quote
PandaLovesHamster Posted September 22, 2015 Posted September 22, 2015 prontera,150,190,3 script Kafra Employee::kaf_prontera20 112,{ cutin "kafra_06",2; callfunc "F_KafSet"; mes "[Kafra Employee]"; mes "Welcome to the"; mes "Kafra Corporation~"; mes "The Kafra Services are"; mes "always here to support"; mes "you. So how can I be"; mes "of service today?"; callfunc "F_Kafra",5,0,0,40,800; savepoint "prontera",155,175; callfunc "F_KafEnd",0,1,"in the city of Prontera"; } Just change save point. Not sure on the guild part though, sorry. Quote
GreenMagic793 Posted September 23, 2015 Posted September 23, 2015 Here you go, wrote this from scratch. This should be exactly what you need. I made it so that your save point is wherever you're standing at the time that you save, which I think is a nice feature. Also offers storage and guild storage as requested. Change the name, sprite etc as you wish. Enjoy. sec_in02,136,173,5 script Meta Kafra 842,{ mes "[Meta Kafra]"; mes "Hello, welcome to the Meta Kafra service. In addition to letting you save in any spot you're standing on, I can open your personal storage and guild storage for you! What'll it be, friend?"; next; menu "Save.",A_1,"Open Storage.",A_2,"Open Guild Storage.",A_3; next; A_1: mes "[Meta Kafra]"; mes "Your Save Point has been established. Good luck in your journey."; next; getmapxy(@m$,@x,@y,0); savepoint @m$,@x,@y; close; A_2: openstorage; close; end; A_3: guildopenstorage(); close; end; } Quote
Question
Dolphin86
hye guys i would like to request a simple npc script,
Feature :
1. save point
2. open storage
3. open guild storage [if the guild master allow the guild member to open them]
Thanks For Your Help !
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.