<?xml version="1.0"?>
<rss version="2.0"><channel><title>All Activity</title><link>https://www.rpgmakercentral.com/discover/</link><description>RPG Maker Central Forums - All Activity</description><language>en</language><item><title>Building a Free Library of Images for Everyone</title><link><![CDATA[https://www.rpgmakercentral.com/topic/40018-building-a-free-library-of-images-for-everyone/?do=findComment&comment=296646]]></link><description>Greetings Fellow Creatives, 
	 
	My mad experiments creating seamless textures continue! This week we have some from my Wood and Vegetation pages. 100% free to use with attribution, like my thousands of other images. 
	 
	https://soundimage.org/images-home-page/ 
	 
	Enjoy!</description><pubDate>Tue, 03 May 2022 17:30:12 +0000</pubDate></item><item><title>The tornado that tore arse through Andover, the storm began its' life over Haysville,</title><link><![CDATA[https://www.rpgmakercentral.com/profile/72944-phoenixsoul/?status=39306&type=status]]></link><description>The tornado that tore arse through Andover, the storm began its' life over Haysville, where I currently reside. Can you imagine, having something like that happening so nearby...</description><pubDate>Tue, 03 May 2022 14:16:52 +0000</pubDate></item><item><title><![CDATA[Player Turn & Move]]></title><link><![CDATA[https://www.rpgmakercentral.com/topic/15995-player-turn-move/?do=findComment&comment=296644]]></link><description><![CDATA[What part does not work? Sir billy script needs to be above galv jump.
 


	The only issue I found was that while walking, if you turned it would not stop to turn before continuing.
 


	I made some changes that should work. It did in my testing.
 


=begin
#=============================================================================== 
  Player Turn &amp; Move (VXA)
  Author : SirBilly (silentkingdom.com)
  Version : 1.0
  Date : 9 June 2013
--------------------------------------------------------------------------------
  This Script makes your character turn and face the direction to move before 
  moving in the chosen direction just like in the pokemon games. 
  
  *Overwrites move_by_input method in Game_Player class.
#===============================================================================
 Instructions
--------------------------------------------------------------------------------
  To install this script, open up your script editor and copy/paste this script
  to an open slot below Materials but above Main.
#===============================================================================
 Terms of Use
--------------------------------------------------------------------------------
 * Free to use for both commercial and non-commercial projects.
 * Do not claim this as your own.
 * Crediting me in the game's credits would be appreciated.
#===============================================================================
=end
#===============================================================================
# * Script Configuration *
#===============================================================================
module SK
  module TURNANDMOVE
 #------------------------------------------------------------------------------
 # This is the delay time between the directional keys imput default is 7. 
 #------------------------------------------------------------------------------
  Delay_Time = 10
 #------------------------------------------------------------------------------
 # Note: works best when kept over 5 and under 10.
 #------------------------------------------------------------------------------
  end
 end
#===============================================================================
# * End of Configuration *
#===============================================================================
class Game_Player &lt; Game_Character
#-------------------------------------------------------------------------------
# Frame Update For Wait Time
#-------------------------------------------------------------------------------
 alias sirbilly_turn_and_move_update update
  def update
    @wait_time = SK::TURNANDMOVE::Delay_Time if @wait_time == nil
    @wait_time -= 1 if @wait_time &gt; 0
    @sbdir = 0 if @sbdir == nil
    sirbilly_turn_and_move_update
  end
#-------------------------------------------------------------------------------
# Movement via Input from Directional Buttons
#-------------------------------------------------------------------------------
  def move_by_input
    return if !movable? || $game_map.interpreter.running?
    case Input.dir4
    when 2 
      if Input.trigger?(:DOWN) &amp;&amp; @sbdir != 2 &amp;&amp; @wait_time == 0
        @wait_time = SK::TURNANDMOVE::Delay_Time 
        set_direction(2)
        @sbdir = 2
      elsif @sbdir != 2 &amp;&amp; @wait_time == 0
        @wait_time = SK::TURNANDMOVE::Delay_Time 
        set_direction(2)
        @sbdir = 2
      elsif @wait_time == 0
        move_straight(2,true)
      end
    when 4
      if Input.trigger?(:LEFT) &amp;&amp; @sbdir != 4 &amp;&amp; @wait_time == 0
        @wait_time = SK::TURNANDMOVE::Delay_Time 
        set_direction(4)
        @sbdir = 4
      elsif @sbdir != 4 &amp;&amp; @wait_time == 0
        @wait_time = SK::TURNANDMOVE::Delay_Time 
        set_direction(4)
        @sbdir = 4
      elsif @wait_time == 0
        move_straight(4,true)
      end
    when 6
      if Input.trigger?(:RIGHT) &amp;&amp; @sbdir != 6 &amp;&amp; @wait_time == 0
        @wait_time = SK::TURNANDMOVE::Delay_Time 
        set_direction(6)
        @sbdir = 6
      elsif @sbdir != 6 &amp;&amp; @wait_time == 0
        @wait_time = SK::TURNANDMOVE::Delay_Time 
        set_direction(6)
        @sbdir = 6
      elsif @wait_time == 0
        move_straight(6,true)
      end
    when 8
      if Input.trigger?(:UP) &amp;&amp; @sbdir != 8 &amp;&amp; @wait_time == 0
        @wait_time = SK::TURNANDMOVE::Delay_Time 
        set_direction(8)
        @sbdir = 8
      elsif @sbdir != 8 &amp;&amp; @wait_time == 0
        @wait_time = SK::TURNANDMOVE::Delay_Time 
        set_direction(8)
        @sbdir = 8
      elsif @wait_time == 0
        move_straight(8,true)
      end
    end
  end
end
#==============================================================================#
#                      http://silentkingdom.com/                               #
#==============================================================================#]]></description><pubDate>Mon, 02 May 2022 03:07:56 +0000</pubDate></item><item><title>Free Music / SFX Resource - Over 2000 Tracks</title><link><![CDATA[https://www.rpgmakercentral.com/topic/34734-free-music-sfx-resource-over-2000-tracks/?do=findComment&comment=296643]]></link><description>Well, it was another crazy busy week (ugh!) but I did manage to create a new production bed to share. Free to use with attribution, you'll find it on my new Country page: 
	 
	"CHUGGIN' THROUGH THE BLUE GRASS STATE" 
	https://soundimage.org/country/ 
	 
	Enjoy!  &#x1F642;</description><pubDate>Sat, 30 Apr 2022 16:42:43 +0000</pubDate></item><item><title><![CDATA[Player Turn & Move]]></title><link><![CDATA[https://www.rpgmakercentral.com/topic/15995-player-turn-move/?do=findComment&comment=296642]]></link><description>Sadly this is not compatible with Jump Ability by Galv... 
 


	i know this is old script but maybe someone or even sirbilly can fix this?</description><pubDate>Sat, 30 Apr 2022 11:19:35 +0000</pubDate></item><item><title>#WrathOfAelita #AndoverTornado #WildRosesForRosalia</title><link><![CDATA[https://www.rpgmakercentral.com/profile/72944-phoenixsoul/?status=39305&type=status]]></link><description>#WrathOfAelita #AndoverTornado #WildRosesForRosalia</description><pubDate>Sat, 30 Apr 2022 05:51:55 +0000</pubDate></item><item><title>bio-Synthetica - Sci Fi/Horror</title><link><![CDATA[https://www.rpgmakercentral.com/topic/43120-bio-synthetica-sci-fihorror/?do=findComment&comment=296640]]></link><description>Take on the role of R3-M1, a newly activated robot, as they venture through a dark, dystopian world in search of answers. Yet, the clues lie buried within dust and ash, data files, and audio clips left behind by decaying corpses from a not-so-distant past.
 


	However, in the shadows lurks an ancient evil--creatures stalking and hunting you at every turn. You must follow the breadcrumbs left behind by your creator in hopes of locating and protecting her. She gave you life, and you must save hers.
 


	
 


	R3-M1 Battle Model. Equipped with Mech-Blade and Particle Gun. Buy yours today for just $5999!
 


	
 


	
		Scavenge for resources and craft items/upgrades.
	
	
		Sideview battle system with melee and ranged combat.
	
	
		Combine abilities for a variety of unique reactions.
	
	
		Fully animated, custom enemies.
	
	
		Upgrade armor and abilities for unique combinations.
	
	
		Fully voiced dialogue by a talented cast of actors.
	
	
		Unique puzzles and hidden areas to discover.
	
	
		No random encounters. All enemies are scripted into each map.
	
	
		Dark and atmospheric with a horror/sci-fi theme.
	



	
 


	VIDEOS
 


	Sagrim's Emporium
 


	Official Teaser Trailer
 


	
 


	Just before your creator vanished, she wanted a codex hub to store data and audio files. She converted KARN into this hub.
 


	Sadly, it was left unfinished, with the machine still resembling the arcade game's outer appearance and playing the classic chiptune music it's so well-known for.
 


	
 


	
		Full Gameplay Trailer
	
	
		Free Demo!
	



	
 


	Make love, not war!
 




	
 


	
 


	
 


	
 


	
 


	 
 


	
 


	!!WARNING!! This game will contain horror images, sounds, and music, including blood and gore.</description><pubDate>Fri, 29 Apr 2022 22:10:05 +0000</pubDate></item><item><title>Indie Team looking for a RPGM MV Programmer</title><link><![CDATA[https://www.rpgmakercentral.com/topic/43119-indie-team-looking-for-a-rpgm-mv-programmer/?do=findComment&comment=296639]]></link><description>Project:
 


	Sci-fi Vs. Fantasy H-game(NSFW Content). To keep it simple, the project will feature a female protagonist representing various Sci-Fi style concepts traveling to a planet and encountering various fantasy threats.
 


	 
 


	Game features:
 


	-Choices that can dramatically change story or gameplay elements
 


	-Multiple unique themed areas filled to the brim with events
 


	-In-depth combat system built from the ground up with H-elements in mind
 


	 
	 
 


	Developers:
 


	Currently have members lined up and ready to begin:
 


	-2 artists(1 NSFW specialist, 1 enemy/UI Designer)
 


	-Map and Event creator
 


	-Story writer, Combat designer, and Battle balancer
 


	 
 


	Looking for:
 


	JavaScript programmer familiar with RPGM MV systems
 


	 
 


	Employment Type:
 


	-Paid for each task
 


	Short term work is fine BUT if you stay with us you also will have the option to swap to rev share later on
 


	 
 


	Preferred method of contact:
 


	Discord is the easiest form of communication but am willing to compromise if necessary
 


	Discord - TM#9000
 


	 
 


	A DM/message here works too
 


	 
 


	Job Description:
 


	-Able to create or edit RPGM plugins
 


	-Can possibly make other edits to RPGM if necessary
 


	 
 


	Additional comments:
 


	 
 


	The project has a decent chunk of groundwork complete
 


	 
 


	All specific questions can be answered by me once contacted</description><pubDate>Fri, 29 Apr 2022 10:07:21 +0000</pubDate></item><item><title>To ascend or not to (Clicker heroes)</title><link><![CDATA[https://www.rpgmakercentral.com/topic/43105-to-ascend-or-not-to-clicker-heroes/?do=findComment&comment=296638]]></link><description>I see, well that's disappointing. One would think they'd add some stuff after all these years, I believe the Cookie Clicker was getting new features once in a while, but haven't played that one in years either.
 


	It is addicting, that's true, that's how these games work. I got really bored of it and stopped playing at some point, never visited again and not having plans to do so. The good part is that one can always just run the game in background and still make progress I guess.
 


	 
 


	---
 


	Yeah, I remember using autoclicking software myself back then, it's much faster than idling.</description><pubDate>Thu, 28 Apr 2022 12:50:08 +0000</pubDate></item><item><title>To ascend or not to (Clicker heroes)</title><link><![CDATA[https://www.rpgmakercentral.com/topic/43105-to-ascend-or-not-to-clicker-heroes/?do=findComment&comment=296637]]></link><description>Just used it for a while and dude it's even better than the paid one honestly. Thanks man, I just hope they don&#x2019;t make it paid after some time lol. Let me use it to my advantage then.</description><pubDate>Thu, 28 Apr 2022 10:24:56 +0000</pubDate></item><item><title>To ascend or not to (Clicker heroes)</title><link><![CDATA[https://www.rpgmakercentral.com/topic/43105-to-ascend-or-not-to-clicker-heroes/?do=findComment&comment=296636]]></link><description>Oh god, thank goodness, that you didn&#x2019;t pay for it. I&#x2019;ve been using this free tool and never had any issues. You can try it out. But seriously, before consulting and searching don&#x2019;t pay for any tools, I have seen that there is always a free alternative for almost everything in gaming.</description><pubDate>Thu, 28 Apr 2022 09:57:07 +0000</pubDate></item><item><title>To ascend or not to (Clicker heroes)</title><link><![CDATA[https://www.rpgmakercentral.com/topic/43105-to-ascend-or-not-to-clicker-heroes/?do=findComment&comment=296635]]></link><description>Oh, niceee. I tried a third-party one few weeks ago, but it started asking me to pay after some time and paying for a tool is the last thing I have money for.</description><pubDate>Thu, 28 Apr 2022 09:25:29 +0000</pubDate></item><item><title>To ascend or not to (Clicker heroes)</title><link><![CDATA[https://www.rpgmakercentral.com/topic/43105-to-ascend-or-not-to-clicker-heroes/?do=findComment&comment=296634]]></link><description>Yes I do save rubies for auto clickers, they&#x2019;re one of the best upgrades you can get honestly. However, if I&#x2019;m being honest, I&#x2019;ve even used third-party auto clickers in the past. They tend to give wayyyyyyy more CPS than the in-game ones.</description><pubDate>Thu, 28 Apr 2022 08:55:25 +0000</pubDate></item><item><title>To ascend or not to (Clicker heroes)</title><link><![CDATA[https://www.rpgmakercentral.com/topic/43105-to-ascend-or-not-to-clicker-heroes/?do=findComment&comment=296633]]></link><description>Makes sense, guess I&#x2019;ll wait for a few more zones before I ascend. Also, once you ascend, what do you do to speed up again? Do you buy a lot of auto clickers? If yes, buying how may of them is worth it?</description><pubDate>Thu, 28 Apr 2022 08:27:37 +0000</pubDate></item><item><title>To ascend or not to (Clicker heroes)</title><link><![CDATA[https://www.rpgmakercentral.com/topic/43105-to-ascend-or-not-to-clicker-heroes/?do=findComment&comment=296632]]></link><description>For the first ascension, I&#x2019;d suggest you to do it somewhere around 130-140 zone. You can do it early as well if you get stuck, but these levels are the most optimal ones. You see, its almost impossible to go past 140 zone without ascending multiple times. Regarding the insta-killing, I find it really stupid. I mean if you&#x2019;re not insta-killing and just ascend very early, you&#x2019;ll leave a lot of hero souls on the table that you might have got.</description><pubDate>Thu, 28 Apr 2022 07:49:19 +0000</pubDate></item><item><title>To ascend or not to (Clicker heroes)</title><link><![CDATA[https://www.rpgmakercentral.com/topic/43105-to-ascend-or-not-to-clicker-heroes/?do=findComment&comment=296631]]></link><description>I see, what do you prefer though? Any specific zone or after you&#x2019;re no longer insta-killing?</description><pubDate>Thu, 28 Apr 2022 07:24:08 +0000</pubDate></item><item><title>To ascend or not to (Clicker heroes)</title><link><![CDATA[https://www.rpgmakercentral.com/topic/43105-to-ascend-or-not-to-clicker-heroes/?do=findComment&comment=296630]]></link><description>Let&#x2019;s see if you&#x2019;re able to quit it, I hope you do. Btw coming back to your question. I don&#x2019;t think you should ascend right away at 100. I mean everybody has a different opinion on when to ascend first, some might say do it when you stop insta-killing whereas a lot of people have specific zones where they prefer to ascend.</description><pubDate>Thu, 28 Apr 2022 06:29:30 +0000</pubDate></item><item><title>To ascend or not to (Clicker heroes)</title><link><![CDATA[https://www.rpgmakercentral.com/topic/43105-to-ascend-or-not-to-clicker-heroes/?do=findComment&comment=296629]]></link><description>It's been only 2 months for me and I can relate how addictive this game is, Fine Fine, I might quit it in a few weeks though, I&#x2019;d rather play a game that at least has an end but seriously can I find an end!</description><pubDate>Thu, 28 Apr 2022 06:09:01 +0000</pubDate></item><item><title>To ascend or not to (Clicker heroes)</title><link><![CDATA[https://www.rpgmakercentral.com/topic/43105-to-ascend-or-not-to-clicker-heroes/?do=findComment&comment=296628]]></link><description>I&#x2019;ve been playing it for more than a year, and can assure it's all the same. The game is as stupid and addictive as it was&#x2026;..I just can&#x2019;t quit playing it man. Why do you wanna play it, just leave and find yourself something else please.</description><pubDate>Thu, 28 Apr 2022 05:33:31 +0000</pubDate></item><item><title>To ascend or not to (Clicker heroes)</title><link><![CDATA[https://www.rpgmakercentral.com/topic/43105-to-ascend-or-not-to-clicker-heroes/?do=findComment&comment=296627]]></link><description>Wow, 500 hours, you&#x2019;re definitely an experienced player. I&#x2019;ve just started the game like 2 months back (or even less). From your description it looks like nothing much has changed. Things are quite similar even now, you just play for a few levels, get stuck after a point and then just keep ascending over and over again.</description><pubDate>Thu, 28 Apr 2022 05:11:44 +0000</pubDate></item><item><title>Event Position: Fine Tuning</title><link><![CDATA[https://www.rpgmakercentral.com/topic/3231-event-position-fine-tuning/?do=findComment&comment=296626]]></link><description>Thank you!</description><pubDate>Tue, 26 Apr 2022 13:41:04 +0000</pubDate></item><item><title>Event Position: Fine Tuning</title><link><![CDATA[https://www.rpgmakercentral.com/topic/3231-event-position-fine-tuning/?do=findComment&comment=296625]]></link><description>So you have an email address that you will never use again? You could ask an admin to tell you the email address.
 


	@Rikifive Can send you a DM for that.
 


	 
 


	Will you forget this email address? lol</description><pubDate>Tue, 26 Apr 2022 13:18:13 +0000</pubDate></item><item><title>Event Position: Fine Tuning</title><link><![CDATA[https://www.rpgmakercentral.com/topic/3231-event-position-fine-tuning/?do=findComment&comment=296624]]></link><description>I put it under the main script as you said to me before (for new additional scripts).
 


	I am just saying this because in this case maybe i should be replacing something? because it doesen't work for me.. (i tried it with the 3.4 Version)
 


	I don't worry too much tho because i can do my part with the "trick" i said above. Thank you anyway!
 

 


	i don't even remember the email</description><pubDate>Tue, 26 Apr 2022 08:07:23 +0000</pubDate></item><item><title>Throw Items away</title><link><![CDATA[https://www.rpgmakercentral.com/topic/2083-throw-items-away/?do=findComment&comment=296623]]></link><description>Now it works fine! Thank you again!!!</description><pubDate>Tue, 26 Apr 2022 07:51:07 +0000</pubDate></item><item><title>Word Wrapping Message Boxes</title><link><![CDATA[https://www.rpgmakercentral.com/topic/6964-word-wrapping-message-boxes/?do=findComment&comment=296622]]></link><description>I am glad you figured it out!</description><pubDate>Tue, 26 Apr 2022 02:13:34 +0000</pubDate></item></channel></rss>
