Is the Player Behind You, NPC?
You only need a snippet to figure it out!
Simply call:
behind_event?(EventID)
And you'll soon know if your character is just about to get rid of some nasty tyrant...
Or some dissenter a la Belarus instead.
XP Version
Code:
class Interpreter
def behind_event?(event_id)
event = $game_map.events[event_id]
return nil if $game_player.direction != event.direction
if $game_player.y == event.y
distance = $game_player.x - event.x
return distance == 1 if player_dir == 4
return distance == -1 if player_dir == 6
elsif $game_player.x == event.x
distance = $game_player.y - event.y
return distance == 1 if player_dir == 2
return distance == -1 if player_dir == 8
end
nil
end
end
VX & ACE Version
Code:
class Game_Interpreter
def behind_event?(event_id)
event = $game_map.events[event_id]
return nil if $game_player.direction != event.direction
if $game_player.y == event.y
distance = $game_player.x - event.x
return distance == 1 if player_dir == 4
return distance == -1 if player_dir == 6
elsif $game_player.x == event.x
distance = $game_player.y - event.y
return distance == 1 if player_dir == 2
return distance == -1 if player_dir == 8
end
nil
end
end
"For God has not destined us for wrath, but for obtaining salvation through our Lord Jesus Christ," 1 Thessalonians 5:9
Maranatha!
The Internet might be either your friend or enemy. It just depends on whether or not she has a bad hair day.
My Original Stories (available in English and Spanish)
List of Compiled Binary Executables I have published...
HiddenChest & Roole
Give me a free copy of your completed game if you include at least 3 of my scripts!
Just some scripts I've already published on the board...
KyoGemBoost XP VX & ACE, RandomEnkounters XP, KSkillShop XP, Kolloseum States XP, KEvents XP, KScenario XP & Gosu, KyoPrizeShop XP Mangostan, Kuests XP, KyoDiscounts XP VX, ACE & MV, KChest XP VX & ACE 2016, KTelePort XP, KSkillMax XP & VX & ACE, Gem Roulette XP VX & VX Ace, KRespawnPoint XP, VX & VX Ace, GiveAway XP VX & ACE, Klearance XP VX & ACE, KUnits XP VX, ACE & Gosu 2017, KLevel XP, KRumors XP & ACE, KMonsterPals XP VX & ACE, KStatsRefill XP VX & ACE, KLotto XP VX & ACE, KItemDesc XP & VX, KPocket XP & VX, OpenChest XP VX & ACE
Maranatha!
The Internet might be either your friend or enemy. It just depends on whether or not she has a bad hair day.
My Original Stories (available in English and Spanish)
List of Compiled Binary Executables I have published...
HiddenChest & Roole
Give me a free copy of your completed game if you include at least 3 of my scripts!
Just some scripts I've already published on the board...
KyoGemBoost XP VX & ACE, RandomEnkounters XP, KSkillShop XP, Kolloseum States XP, KEvents XP, KScenario XP & Gosu, KyoPrizeShop XP Mangostan, Kuests XP, KyoDiscounts XP VX, ACE & MV, KChest XP VX & ACE 2016, KTelePort XP, KSkillMax XP & VX & ACE, Gem Roulette XP VX & VX Ace, KRespawnPoint XP, VX & VX Ace, GiveAway XP VX & ACE, Klearance XP VX & ACE, KUnits XP VX, ACE & Gosu 2017, KLevel XP, KRumors XP & ACE, KMonsterPals XP VX & ACE, KStatsRefill XP VX & ACE, KLotto XP VX & ACE, KItemDesc XP & VX, KPocket XP & VX, OpenChest XP VX & ACE