-
Posts
568 -
Joined
-
Last visited
-
Days Won
39
Content Type
Profiles
Forums
Events
Downloads
Store
Articles
Everything posted by PcTeknic
-
we are two now Impossible to make a community, group or friends of your country in steam , people spend steam
-
-
Heyyyy, tthurman and Draco, I see you play Pinball FX2 to, what is your nick on Steam ?. I am now with Biolab, to see if I make a game of 1000M to 2000M.
-
This round's on me. Ham and beer for everyone !!! ---------- A esta ronda invito yo. Jamón y cerveza para todos!!!
-
In the FTP, on my Folder. I have DMD Images and DMDVídeos. You can use them for your backglass without any problems.
-
I do not like Zaccaria finish, but just why I like spending what they give me TPA in tables Zaccaria. I said a thousand times, all offer support less TPA. ------------------------------------ No me termina de gustar Zaccaria, pero solo por eso igual me gasto lo que me den por TPA en mesas de Zaccaria. Lo dicho mil veces, todos ofrecen soporte menos TPA.
-
It works perfectly. I updated PinballX. I set PinballX to VPinball921.exe is the executable. I edited the database by hand to add <alternateexe> VPinball992.exe </ alternateexe> before </ game> at each table that is to be executed with VP99. I added <alternateexe> VPinballX.exe </ alternateexe> before </ game> at each table that is to be executed with VPX. Works perfect without rename tables or use external launcher. I continue renaming the tables, more than anything to know at a glance which correspond to each version, but that things are already mine.
-
That's great!!! So if I understand you well, my databases should be as follows: (whether I do it with GM as if I do it by hand). <menu> <game name="Monopoly FS"> <description>MONOPOLY</description> <rom></rom> <manufacturer>Stern</manufacturer> <year>2001</year> <type>Pinball SS</type> <hidedmd>True</hidedmd> <hidebackglass>True</hidebackglass> <enabled>True</enabled> <rating>5</rating> <alternateexe>VPinball921.exe</alternateexe> </game> <game name="VP10_Monopoly_WOW"> <description>MONOPOLY WOW</description> <rom></rom> <manufacturer>Stern</manufacturer> <year>2001</year> <type>Pinball SS</type> <hidedmd>True</hidedmd> <hidebackglass>True</hidebackglass> <enabled>True</enabled> <rating>5</rating> <alternateexe>VPinballX.exe</alternateexe> </game> <game name="VP99_Monster Bash"> <description>MONSTER BASH</description> <rom></rom> <manufacturer>Williams</manufacturer> <year>1998</year> <type>Pinball SS</type> <hidedmd>True</hidedmd> <hidebackglass>True</hidebackglass> <enabled>True</enabled> <rating>5</rating> <alternateexe>VPinball992.exe</alternateexe> </game> </menu>
-
I did not know GameManager could do this from the latest versions soil no longer open GameManager, usually work the database by hand. So we have two options. 1 GameManager use to specify the version of each table. 2 change the executable to VPLauncher Then I'll look at what the GameManager, although I have found it very convenient VPLauncher.
-
Whether it is published, pending approval, I have not had time to translate it, so if they are not approved. Anyway I do not think Tom seeing the script take long to incorporate it directly into PinballX. If you hurry to fix it, you can see it in my blog, I hope not understood this as spam. http://pinballvirtual.es/vplauncher-varias-versiones-de-visual-pinball-en-pinballx/
-
Version 1.0.0
61 downloads
Visual Pinball X trae muchas mejoras que no puedes dejar pasar, para quienes no tenían ya instalado Visual Pinball no existe ningún motivo para que a la hora de hacer la instalación no lo hagan ya con esta nueva versión ya que además, podrán añadir mesas de otras versiones. Entre quienes ya tienen Visual Pinball 9 ya instalado y configurado, existe un gran temor a que algo salga mal y tengan que configurarlo todo de nuevo, desde aquí les puedo decir que no sólo no van a tener problemas, si no que lo más probable es que solucionen problemas existentes. Unos por hacer una nueva instalación y otros por usar VPLauncher. ¿QUE ES VPLAUNCHER? VPLauncher es un script de AutoHotkey que le va a decir a PinballX con que versión debe abrir cada mesa, lo cual nos permitirá tener mesas de varias versiones. Por ejemplo Monster Bash, me funcionaba correctamente abriéndola con doble clic ya que la abría con VPinball992.exe, pero PinballX la abría con Vpinball921.exe, lo cual provocaba fallos de funcionamiento. El Script no está programado por mi, encontré la información en VPForums y le he hecho algún retoque para que coincidan los nombres con los de la instalación de VPX. ¿DÓNDE PONGO VPLAUNCHER? VPLancher tienes que ponerlo en tu carpeta Visual Pinball, junto con todos los .exe de Visual Pinball. Veras que hay dos ejecutables en la descarga, VPLauncher.exe y VPLauncher32Bit.exe, si usas un sistema operativo de 32 Bits, deberás usar el de 32 Bits o no te abrirá las mesas. Yo solo recomiendo un sistema de 32 bits si vas a jugar en modo escritorio (1 pantalla) ya que un sistema de 32 bits no de reconocerá más de 3Gb de RAM y para jugar en modo cabinet (2 o 3 pantallas) es recomendable como mínimo 4Gb de RAM y un procesador de cuatro núcleos. ¿QUE CONTIENE EL SCRIPT? #SingleInstance force SetTitleMatchMode 2 DetectHiddenWindows On SetWorkingDir %A_ScriptDir% vpt=vpt vpx=vpx playme=/play editme=/Edit Table = %1% ;Variable direct table SplitPath, Table, Tname, Tdir, Text, Tname_no_ext, Tdrive SplitPath, Tdir,, vpdir If (Text=%vpt%) or (Text=%vpx%) { goto Tabledetected } Table = %2% ;Variable from PinballX or batch file personal use. SplitPath, Table, Tname, Tdir, Text, Tname_no_ext, Tdrive StringTrimLeft, Table, Table, 1 SplitPath, Tdir,, vpdir StringTrimLeft, vpdir, vpdir, 1 If (Text=%vpt%) or (Text=%vpx%) { if playme=%1% function=%playme% else function=%editme% goto Tabledetected } exitapp Tabledetected: IfInString, Table, VP92 { myexe=VPinball921.exe } IfInString, Table, VP99 { myexe=VPinball992.exe } IfInString, Table, physmod5 { myexe=VPinball99_PhysMod5.exe } IfInString, Table, vpx { myexe=VPinballX.exe } if myexe= { myexe=VPinball921.exe } If function=%editme% RunMytable =%vpdir%\%myexe% /Edit -“%Table%” Else RunMytable =%vpdir%\%myexe% /play -“%Table%” Run, %RunMytable% checkprocessagain: Process, wait, %myexe%, 5.5 NewPID = %ErrorLevel% ; Save the value immediately since ErrorLevel is often changed. if NewPID = 0 goto checkprocessagain Process, WaitClose, %NewPID% exitapp return ¿Y COMO FUNCIONA? Pués ese Script, entre otras cosas, lo que está haciendo es, basándose en parte del texto, ejecutar la mesa en la versión que corresponda. Todas las mesas de VPX las va a ejecutar con VPinballX.exe ya que todas contienen .vpx en su extensión. La mesas de Monster Bash, para que me la ejecute correctamente la he renombrado a VP92_Monster…. Y cuando no encuentra una descripción coincidente, lo hará con VPinball921.exe, con lo cual, solo tenemos que renombrar las mesas que nos den problemas con la versión 921, aunque si quieres renombrarlas todas tampoco sería un problema. ¿QUE HAY QUE CAMBIAR EN PINBALLX? En PinballX, en la configuración de Visual Pinball, tan solo tienes que cambiar el ejecutable, VPinball921.exe por VPLauncher.exe (64Bits) o VPLauncher32Bit.exe (32Bits), todos los demás parámetros se mantienen. (Si es tu primera instalación, visita el manual de PinballX). ¿NADA MAS? Nada más. simplemente comentar que si necesitas editar el Script, necesitas el programa gratuito AutoHotkey, que puedes bajar de su web: https://autohotkey.com/ sólo si necesitas editarlo, del enlace de descarga ya lo tienes como ejecutable para que funcione en cualquier equipo. Tan solo tienes que descomprimir, meter el VPLauncher.exe en tu carpeta Visual Pinball y hacer lo que hemos comentado en este tema. -
The translator did not translate well what you said .
-
Pinball FX2 and pro- pinball , also have their versions of Android without cabinet support. But its PC version if you have cabinet support, pro- pinball since its launch and PinballFX2 by user requests . If they want possible, but do not want .
-
At the end they will be the ones who lose . With this all you get is that people stop using their game and of course stop buying their tables or any other game we do.
-
Yes Yes of course. All I'm saying is that now works because it has been updated, but that soon will be the same. While TPA do not do something, we are always the same. It is not my intention to criticize your answer, if not TPA. Not if the translator will have put something wrong.
-
Perfect. How long this time work? 1 week? 1 month? After? another month without work? As the song says: "1 2 3 one step forward Maria, 1 2 3 one step back"
-
PinKadia! The Ultimate virtual Pinball / Arcade / PC combo cabinet!
PcTeknic replied to TerryRed's topic in Gamer Rigs
I love your PinKadia. Excellent Work. -
PinballX Enhancements/Features Requests
PcTeknic replied to Draco1962's topic in FAQs, Guides, & Other Useful Information
To show imagen or vídeos in 3rd screen, you can use the folders and options of DMD. -
-