Added HelpMeShorty dynamic npc and quest (#7415)

* Short quest to allow the player to summon, via an item, a dynamic NPC that gives basic game information.
* After level 30, the player can get a costume in exchange for the item.

Co-authored-by: Aleos <aleos89@users.noreply.github.com>
This commit is contained in:
Atemo 2022-11-16 14:42:53 +01:00 committed by GitHub
parent 15e27b3567
commit 5d8e034868
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 1245 additions and 1 deletions

View File

@ -47378,6 +47378,21 @@ Body:
Script: |
specialeffect2 EF_CLAYMORE;
setmadogear true;
- Id: 23278
AegisName: HelpmeShorty
Name: Help Me Shorty
Type: Delayconsume
Trade:
NoDrop: true
NoTrade: true
NoSell: true
NoCart: true
NoStorage: true
NoGuildStorage: true
NoMail: true
NoAuction: true
Script: |
duplicate_dynamic("Shorty#fgtg01");
- Id: 23280
AegisName: N_Fly_Wing_
Name: Novice Fly Wing

View File

@ -9790,6 +9790,17 @@ Body:
- Id: 14687
Title: Mysterious Device
TimeLimit: +1h
- Id: 14688
Title: My name is Shorty
- Id: 14689
Title: Help Shorty
- Id: 14693
Title: To Payon
- Id: 14694
Title: To Prontera Field
- Id: 14695
Title: Cheer up, Sunsammi!
TimeLimit: +30mn
- Id: 14699
Title: Event once a day
TimeLimit: 4h

File diff suppressed because it is too large Load Diff

View File

@ -205,6 +205,7 @@ npc: npc/re/quests/seals/megingard_seal.txt
// --------------------------------------------------------------
npc: npc/re/quests/cooking_quest.txt
//npc: npc/re/quests/cupet.txt
npc: npc/re/quests/HelpMeShorty.txt
npc: npc/re/quests/homun_s.txt
npc: npc/re/quests/juno_monster_society.txt
npc: npc/re/quests/magic_books.txt

View File

@ -25230,7 +25230,7 @@ BUILDIN_FUNC(duplicate_dynamic){
if( dnd == nullptr ){
script_pushstrcopy( st, "" );
return SCRIPT_CMD_FAILURE;
return SCRIPT_CMD_SUCCESS;
}else{
script_pushstrcopy( st, dnd->exname );
return SCRIPT_CMD_SUCCESS;