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;
}
}
}
}
DMap and Other script help please.
Started by
LikeLike888
, Apr 20 2026 04:11 AM
No replies to this topic
#1
Posted 20 April 2026 - 04:11 AM
1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users

