Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - nevincho

Pages: 1 [2] 3 4 ... 7
16
Themes / Re: Cool Blue Ring Theme
« on: September 29, 2018, 12:33:48 AM »
For widescreen try this http://forum.attractmode.org/index.php?topic=2364.msg16103#msg16103

Again set fo MaLa but work on AM

17
Themes / Re: Cool Blue Ring Theme
« on: September 27, 2018, 01:57:40 PM »
4:3 - best for arcade cab :)

18
Themes / Cool Blue Ring Theme
« on: September 27, 2018, 01:23:02 PM »
 Cool and light theme created for Mala FE, but working excellently with AM. You need to have а loader mala.nut to work, added to the zip

Add link for your logos in marquee place.

video: https://youtu.be/c6ouy-q_Mck

Download: https://mega.nz/#!eZwB1Q4a!vL8cSnxXiEjbq6MGNFpM3Y85PzQ19L49K5fA2pPn6SE

19
Scripting / Re: Problem plugin - Random
« on: September 11, 2018, 03:34:17 AM »
Is it possible except by random, to change the list in ascending order: 1,2,3 and so on?

I am not sure why you would want this. Anyways, fork it on GitHub now before I do an update, and change plugin.nut line 51 to the following:
Code: [Select]
if (ttime >= signalTime + delayTime) fe.filters.reverse_order = true;
Thanks again for your time. I tried and changed the code to line 51 but it does not work

I rechecked the docs. I guess I looked at it too quickly.

Quote
reverse_order - [bool] Will be equal to true if the list order has been reversed.

You need to test reverse_order and switch its boolean value.

Try:

Code: [Select]
if (ttime >= signalTime + delayTime)
  fe.filters.reverse_order ? fe.filters.reverse_order = false : fe.filters.reverse_order = true;

I tested it with АМ 2.3.0/2.4.0 and it did not work again. No matter how interesting it may be. Thank you again for your attention. It's not important that if one day you have time a look at it. It would be a nice plugin to have two options for alternating games.

20
Scripting / Re: Problem plugin - Random
« on: September 10, 2018, 10:02:43 PM »
Is it possible except by random, to change the list in ascending order: 1,2,3 and so on?

I am not sure why you would want this. Anyways, fork it on GitHub now before I do an update, and change plugin.nut line 51 to the following:
Code: [Select]
if (ttime >= signalTime + delayTime) fe.filters.reverse_order = true;

Thanks again for your time. I tried and changed the code to line 51 but it does not work

21
This is show icon for game category: Action, Shooter, Maze and etc.
 

Must add in romlist

22
Scripting / Re: Problem plugin - Random
« on: September 09, 2018, 09:35:06 PM »
Is it possible except by random, to change the list in ascending order: 1,2,3 and so on?

23
Scripting / Re: Problem plugin - Random
« on: September 07, 2018, 09:32:53 PM »
Perfect work, thanks again.

24
Scripting / Re: Problem plugin - Random
« on: September 06, 2018, 09:03:53 PM »
Thanks for your time.

25
Scripting / Re: Problem plugin - Random
« on: September 04, 2018, 04:19:15 PM »
class Random
{
   m_config = null;

   m_last_rand = 0;
   m_rand_ms = 0;

   constructor() {
      m_config = fe.get_config();

      m_rand_ms = 1000 * m_config["rand_s"].tointeger();

      if (!fe.nv.rawin( "Random" ))
         fe.nv.rawset( "Random", false);

      fe.add_ticks_callback( this, "on_tick" );
      fe.add_transition_callback( this, "on_transition" );
   }

   function on_tick( ttime )
   {
      if ( ttime - m_last_rand > 10000 )
      {
         local roll = 1.0 * rand() / RAND_MAX;
         roll = ( roll * fe.displays.len() );
         fe.set_display( roll );

         m_last_rand = ttime;
         fe.nv[ "Random" ] = true;

26
Scripting / Re: Problem plugin - Random
« on: September 04, 2018, 02:52:47 PM »
Thank you for answer.

Plugin works, but whatever value I want to set 60, 600, 6000, 9999 changes the names always for about 10-12 sec.

It would be good to be at least about 1 minute for the video snap to show

27
Scripting / Re: Problem plugin - Random
« on: September 04, 2018, 08:05:21 AM »
WTF?! Really no one can help me?

28
General / Re: Cue files black screen problem
« on: September 01, 2018, 02:30:03 PM »
executable           your path to ePSXe.exe
args                 -nogui -loadbin "[romfilename]"
rompath              your path to roms
romext               .bin
artwork    flyer            your path to flyers
artwork    marquee          your path to marquee
artwork    snap             your path to snap or video
artwork    wheel            your path to wheel

29
Scripting / Re: Problem plugin - Random
« on: August 30, 2018, 03:48:38 AM »
Any one?

30
Scripting / Problem plugin - Random
« on: August 28, 2018, 12:42:41 AM »
Does not record the correct time. At 60 seconds, changes the game list every 10-12 seconds ...


Pages: 1 [2] 3 4 ... 7