Jump to content

Photo

DMap and Other script help please.


  • Please log in to reply
No replies to this topic

#1 LikeLike888

LikeLike888

    Spicy food lover!!

  • Members
  • Real Name:Jason
  • Location:North America

Posted 20 April 2026 - 04:11 AM

import "std.zh"
import "Classic.zh"
 
 
item script no_shield_three {
void run(){
Link->Item[I_SHIELD3] = false;
}
}
 
 
item script no_shield_at_all {
void run(){
Link->Item[I_SHIELD3] = false;
Link->Item[I_SHIELD2] = false;
Link->Item[I_SHIELD1] = false;
}
}
 
 
ffc script free_shop_for_shield_three_to_play_as_Deanna {
void run(){
if (Link->GetCurDMap == 11)
{
if (Link->GetCurScreen == 14)
{
if (Link->Item[I_SHIELD3] == false)
{
Screen->Guy = NPC_EMPTY;
Screen->Catchall = 4;
}
}
}
}
 
 
ffc script free_shop_for_no_shield_three_to_play_as_Nicole {
void run(){
if (Link->GetCurDMap == 11)
{
if (Link->GetCurScreen == 13)
{
if (Link->Item[I_SHIELD3] == true)
{
Screen->Guy = NPC_EMPTY;
Screen->Catchall = 7;
}
}
}
}



0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users