The online racing simulator
Searching in All forums
(284 results)
JackCY
S2 licensed
I think it will be the my horn setup I wrote you on IM
horn on left mouse
JackCY
S2 licensed
lol I heard that something like that happened, but I don't remember me or superobo horning all the way through the stint, I think on my computer there wasn't any horning
anyway this bug is probably unrepeatable thus almost no chance of fixing it :/

maybe you can try, continuously horn and change driver, and see if it will still horn when the 2nd driver is in car
because:
I have horn on left mouse and when I click the T to change driver the horn is probably activated to
so it might be repeateble and then post it in BUG section pls, because I like having horn on left mouse
JackCY
S2 licensed
Quote from pandera :I can't make it work.. must be doing something wrong...

I get two types off error instead of connecting to LFS, dependig on IP i use in the config file:
1. if I use the ip: 192.168.0.120 (from my ipconfig output) i get an error from attachment 1
2. if I use the ip: 127.0.0.1 (the standard for localhost...) i get attachment 2
config file edited with notepad, saved as Unicode, other settings (except for admin password of course) untouched

Is there any step by step guide how to set it up properly that I missed?

LFSRelax for example is running perfectly so it sholudn't be any poblem connected to InSim/ports themself

hey hey, would take me some time to discover what happened
original version works well?
do you have LFS insim port opened, with command like insim=29999
or try debuging it
but I think the original v1 will do the same
firewall OK?
JackCY
S2 licensed
I'm off for a while, studying abroad, feel free to update, change, what ever.

Vista? don't know, I don't use this cr4p, why should I anyway, besides in schools are XP, in work you have XP, Vista not needed
but the question should be why it may not work in Vista
I think it works, just try it.

patch X? quite old? now I'm updating to Z15 I think you should update to newer version to
may work, depends on InSim version
JackCY
S2 licensed
thanks, I looked in insim.txt, but he's changing it, adding etc. :/
it's a lot of work, maybe I will get to it someday

tarpitting? it's protected so you can't upload/download so often? omg
JackCY
S2 licensed
Quote from Gai-Luron :Hello,

I put in first post the link to the V2.0. With all job done on LFSLapper, i forgot to do this. It's a Shame ! Sorry JackCY

i think yamakawa graph.exe must be included in final release. What do you think about this?

Anyway, great job men, i am happy to see new version of LFSStat and graph
Gai-Luron

np, It's not done and newbies could be confused with the v2 because I removed some of your readmes templates etc. probably

The new graph is again a separate .exe? But I didn't find sources, pls send me them, I may add them instead of the Graph 1.20 if you want.

I tried a simple PHP+MySQL which can read the .CSV generated by the stats and view the info on webpage, Leagues, Races, Teams, Drivers, but is's very simple now and in beginning

.XML for LFSNews, never heard about it, enlighten me
.CSV is exported by default I think

My goal is to find out:
what is stored in LFSWorld and where it is getting the info
what can be "recorded" gathered from the game (with insim) and store that info in simple file (XML is not at all simple when you have to parse it manually without any already done tools, frameworks, DLLs, etc. but maybe way to go) and upload that file to online database (for example on your Team website) and show the various information (automatic upload possible)

and any idea how this is gathering data or it is reading them from LFSWorld?
http://www.spdoracing.com/eventdb
Didn't have a time to ask author about details.

Or do you prefer those static HTML? I think storing those data in database is better.

Any idea if there is any way to capture (simple it to only my own car with which I play when recording) live data about car? Camber, speed, steering, spring load, ... data like you can have from .SPR but I want them from my online races.

Thx
JackCY
S2 licensed
nice work, love the ABS, use it on XRG, I can brake better than before on keyboard and don't overheat the tires
JackCY
S2 licensed
useless for me, I just switch with two mouse buttons one for F9 one for F10, F10 is very rarely used, it will consume to much space on screen
you should better revork the cars internals or release VWS before next christmas comes, it's endless waiting for new changes
JackCY
S2 licensed
Quote from avetere :That's been also my first guess, so I double-checked that.
Well ... here's the code I used:

<?php 
foreach($pthdata as $id => $point) {
    if(isset(
$pthdata[$id+1])) {
        
$dx2 pow(($pthdata[$id+1][centreX] - $pthdata[$id][centreX])/65536,2);
        
$dy2 pow(($pthdata[$id+1][centreY] - $pthdata[$id][centreY])/65536,2);
        
$ds += sqrt($dx2 $dy2);
    }
    elseif(!isset(
$pthdata[$id+1])) {
    
$dx2 pow(($pthdata[0][centreX] - $pthdata[$id][centreX])/65536,2);
    
$dy2 pow(($pthdata[0][centreY] - $pthdata[$id][centreY])/65536,2);
    
$ds += sqrt($dx2 $dy2);
    }
}
?>

Where obviously $pthdata is the array containing all nodes ... and $ds is the total distance

WTF is that
it's thousand times easier and more understandable to write it in ANSI C
or C#, Java, what ever you like, just don't use PHP for desktop applications
JackCY
S2 licensed
Wow, still alive? I'm gona have to try the template
Any new BUGs?
Quote from AchimPL :I think, I have similiar to Markorester problem. The results aren't in folder, where in my opinion they should be... I was using older versions ( 0.9; 1.1) and there I hasn't such problems.
Here are my settings (resultsrace folder is empty)

# Export stats when race ends regularly(restart)? (Race STart occur)
# yes export
# no don't export
# ask ask if export, need to be answered when occur
exportOnRaceSTart = yes

# Ask for file name when exporting stats on Race STart?
# true yes
# false no
askForFileNameOnRST = true

# Export stats when game, replay interupted? (STAte changed)
# yes export
# no don't export
# ask ask if export, need to be answered when occur
exportOnSTAte = no

# Ask for file name when exporting stats on STAte?
# true yes
# false no
askForFileNameOnSTA = false

So i can explain
There are 2 events in LFS where the STATS can be generated.

1) Race start occur (that is what i use, so the replay goes all to the end and restarts)
you can config that by:
exportOnRaceSTart
askForFileNameOnRST

2) STAte changes... absolutely it occurs when you exit the replay before it goes to the end when it restarts. So you exit the replay (as i can invoke this by doing so).
you can config that by:
exportOnSTAte
askForFileNameOnSTA

In my config which is in the v2 I don't export on STAte change, i only export on Race STart, so change that in config mate, it will suit your needs

-----------------
today i exported 3 hour race with no problem on 1st run, runned it on fastplay (8x or 16x don't now, just that my PC can do around 20fps I stop increasing play speed)
Last edited by JackCY, .
JackCY
S2 licensed
Toyota corolla AE86
JackCY
S2 licensed
Quote from markorester :I get this

http://img12.imagehosting.gr/o ... i428934_ScreenShot009.bmp

and after 6-7 seconds lfsstats close

as i guess from the picture you didn't open the port in LFS or your Firewall
type /insim 29999 in LFS or something like that, it didn't connect, i never tested it for things like that so errors can occur, i just corrected some visual things
JackCY
S2 licensed
why the hell you give it installation and in it you overwrite system files! it asked me for Windows CD-ROM, i like my system and don't want to have some sort of shit like that done in installation, it is not necessary for any of LFS addons to have installation!
it is writen in VB?

don't create a installation when you don't know what are you doing! pls

you overwriten those files for no purpose! and i had to manualy remove the shortcuts from desktop and startmenu :/

P0,"C:\WINDOWS\Fonts\quartz.ttf",0
P0,"C:\WINDOWS\system32\iProfessionalLibrary.ocx",0
P0,"d:\_games\LFS_Utilities\LFS_Virtual_Dashboard\LFSVD\VLFSDash.ini",0
U0,"d:\_games\LFS_Utilities\LFS_Virtual_Dashboard\LFSVD",0
P0,"C:\WINDOWS\system32\MSCOMM32.OCX",0
P0,"d:\_games\LFS_Utilities\LFS_Virtual_Dashboard\LFSVD\VLFSDash.exe",0
P0,"C:\WINDOWS\system32\isAnalogLibrary.ocx",0
P0,"C:\Documents and Settings\JackCY\Plocha\VLFSDash v0.2.0.lnk",0
P0,"C:\Documents and Settings\JackCY\Data aplikacÝ\Microsoft\Internet Explorer\Quick Launch\VLFSDash v0.2.0.lnk",0
U0,"C:\Documents and Settings\JackCY\NabÝdka Start\Programy\Virtual LFS Dashboard",0
P0,"C:\Documents and Settings\JackCY\NabÝdka Start\Programy\Virtual LFS Dashboard\VLFSDash v0.2.0.lnk",0
P0,"d:\_games\LFS_Utilities\LFS_Virtual_Dashboard\LFSVD\uninstall.exe",0
J0,2,Software\Microsoft\Windows\CurrentVersion\Uninstall\Virtual LFS Dashboard,
J0,2,Software\Microsoft\Windows\CurrentVersion\Uninstall\Virtual LFS Dashboard,UninstallString
J0,2,Software\Microsoft\Windows\CurrentVersion\Uninstall\Virtual LFS Dashboard,DisplayName
J0,2,Software\Microsoft\Windows\CurrentVersion\Uninstall\Virtual LFS Dashboard,DisplayIcon
P0,"C:\Documents and Settings\JackCY\NabÝdka Start\Programy\Virtual LFS Dashboard\Uninstall.lnk",0
D0,"C:\WINDOWS\system32\COMDLG32.OCX",DllUnregisterServer,0
D0,"C:\WINDOWS\system32\iProfessionalLibrary.ocx",DllUnregisterServer,0
D0,"C:\WINDOWS\system32\MSSTDFMT.DLL",DllUnregisterServer,0
D0,"C:\WINDOWS\system32\MSCOMM32.OCX",DllUnregisterServer,0
D0,"C:\WINDOWS\system32\isAnalogLibrary.ocx",DllUnregisterServer,0
J0,2,Software\Microsoft\Windows NT\CurrentVersion\Fonts,Quartz
P0,"d:\_games\LFS_Utilities\LFS_Virtual_Dashboard\LFSVD\uninstall.ini",0


pls use DLL or a single EXE file isntead, you can really mess up someones OS
just tell them that they need VB6 runtimes and thats all, or .NET 2.0, etc.


&

why don't you set the outgauge with your app? LFS MoTeC does that and if Outgauge is setted in cfg it won't work, and your app want it manually set in cfg so they conflict

nice work but it's a bit laggy
Last edited by JackCY, .
JackCY
S2 licensed
pls send me a PM with source files pls
JackCY
S2 licensed
i had to delete outgauge and outsim from cfg, the whole app. v0.95 is very CPU consuming and the GUI is badly done it blips when rpm changes, si it blips always, why you didn't used DirectX or OpenGL? or some better GUI, don't know why it is flickering
going to try v0.97

still flickering
Last edited by JackCY, .
JackCY
S2 licensed
Quote from The Stig PL :my E30's ABS is working in reverse

yeah why not, ABS got nothing to do with which way are you going or which gear you are on
in normal cars it is a separated brake system, in those new shitty full of electronic cars it is for sure connted with stabilisation system etc. and it that can apply brakes on its own... but never heard a thing of automaticswitching off ABS on reverse
JackCY
S2 licensed
Quote from markorester :Can someone tell me how to use this tool offline????

I'm always using it offline for replays, never tested it online.
So i think there is IP in config: 127.0.0.1 which is localhost which is your PC.
And port is probably 29999, so i hit ALT+F1 in menu and for that i have "/insim 29999".
Or type that in console, which is probably opened by Backspace, or it can be written in normal chatbox T, but i think that there than must be a '=' character. For help files etc. look in v1.1.
JackCY
S2 licensed
Quote from vicbel :I can't make LFSsTaT v2.0 to connect to LFS. V 1.1 works perfectly fine. but 2.0 won't connect. any ideas?

I am using Vista BTW

won't connect? well there is port set in config i thing and it should be the same as in v1.1, it works perfectly for me on XP 32bit, latest LFS, .NET 2.0 (but have 3.5 to)

maybe will further when VWS comes out to add it
place BUGS highly visible, by adding a word "BUG", so i can search the thread for bugs, i will only solve bugs that appear in latest LFS (unlocked, not demo), if it will be big problem i could test other OSes like Viruses Intruders Spyware Trojans Advare, 64bit still unusable OSes, but i will not test it on Linux, because i hate it, got here 2 Tuxes and both sucks as hell (very bad experiences everytime i want to do something serious on it).
JackCY
S2 licensed
Quote from NotAnIllusion :1. There is an i got banned thread
2. Your complaint is more appropriately dealt via PMs or CD's forum
3. Your post alone wouldn't stop me from going to their servers
4. Why did you make a public post before trying to handle it directly

so, ibtl

hehe i told him that right after but he wanted it public so everyone know what CD is

1. There is an i got banned thread

i didn't found it, where it is?
JackCY
S2 licensed
* yeah i had a bad luck, but i was shocked at the end when he did that ban, after race i asked him why he banned bavorak, but he told me that bavorak crashed him and didn't appologized i couldn't believe that so i saved the replay and watched it when i got back architect wasn't answering any questions
* pls see the replay, it's 1st lap, 1st left corner of 180° hairpin, the conversation should be at the and but i'm not sure if there is mine conversation with him right now
JackCY
S2 licensed
Quote from SamH :Hiyas.. yes, we are still collecting stats. Technically we're out of season regarding the online competition at the moment, but we're working with teams to place drivers etc and watching for new talent in the V1 servers. V1 is a rolling project at the moment.

any news? statistics available for racers, some videos etc.? thx
What about the server usage? Is there anyone racing? And when?
JackCY
S2 licensed
i don't know what you mean guys
have no time for development, feel free to develop your self, but keep our names as authors and add yours
JackCY
S2 licensed
guys it seems you missed my updated version, graph is included in it LFS STATS 2.00
where are the results? in the directory of the program, or where you set it in config
it seems like if you don't have a GUI application you are losted
as i know gai luron will not probably develop it anymore, probably neither I, i fixed lot of small bugs in texts etc. and added several options + graph included

but IMHO the program can't do many things i would want, but that would mean complete new program + database

i'm lookning for something like online LFSAnalyzer, so it generate data from online play or MPR just from your car not opponents which is impossible in today LFS i think, but don't know if it's possible for your own car
Last edited by JackCY, .
JackCY
S2 licensed
Quote from SamH :The Race 8 and Race 9 results will be going up shortly. I'm the one responsible for posting them and the plan is to post a comprehensive championship review from 1-9. I'm just really pushed for time at the moment.

I had a chat with Jay the other day and things are moving ever-forward with V1, even though there aren't currently any regular races scheduled since we reached the end of the F1 season. I will post more info as soon as I have it

can't wait for it
JackCY
S2 licensed
Quote from anttt69 :post us a link to the results Jack we all want to see how you did

Which Jack? I think there is more of us. I posted mine. V1_S1R9_stats
FGED GREDG RDFGDR GSFDG