Just looking into the sourcecode. It seems that Lapper reports a wrong password, when it doesnt receive a proper ISP_VER packet.
No idea why its coded like this. Sounds not very logical to me.
The code doesnt have any commentary at all , which in some cases is really hard to understand, for a non-programmer like me .
Here's a snippet of the code.
This is a good one. I will investigate this when i get home.
Could you try to change the 'remote port' in /bin/LFSServers.cfg.
From my experience. I know that Lapper doest start/connect when you have multiple Lapper instances running with the same "remote port" on the same machine
Well heres a another turkish cracked community that are advertising on their demoservers.
Hostname: [LFSTURKIYE] GEZINTI
Website: https://hakancoban05.wixsite.com/server
hi , i dont wanted to start a new topic , so i just do it in here.
There are a few demo servers named: drifthane.
They have a website/facebook etc.
Its a turkish team that invites players to join theire cracked community.
Could the dev or someone else take those servers down and theire entire community?
It is been a while since i updated this addon.
a good time to update the timetable code a littlebit.
Also was a good time to switch to a other saving methode.
Using the EditFile() and ReadFile() now instead of using usergroups.
You probably wont see anything of the updates, when you join the server.
Check the changelog below:
V2.00(27-12-2018) Add: TimeList optimizing code ( delete empty/faulty lines) Fix: TimeTable: Some stages couldnt go further than 3rd page Fix: TimeTable: gaptimes on 2+ pages not displayed correctly Fix: TimeTable: Buttons not proper deleted after going back to first page ( (Car/Player)filter or all-records) Fix: TimeTable: Slower times not deleted properly. Fix: Startline: Playervalues not set properly when TimeNextDriver is set to -1. Update: TimeTable: Wait message when loading timetable. Update: TimeTable: code optimization Update: New Filesystem to save/load times. (ReadFile(),Editfile() instead of using usergroups) Update: Now possible to turn on/off the yellowflag system. Update: Decreased size logo option Removed: TimeTable: Nickname change option.
If you see anything, that doesnt work properly, report it.
<?php ###################################################################################### #Tutorial: Create/Edit/Read/Delete files and delete lines in a file. #In this tutorial i show you some code examples. You may use these in your scripts aswell. # #We use the OnMSO Playerevent , which registers the input of the message box ('T' keypress) ###################################################################################### Event OnMSO( $userName, $text ) # Player event $idxOfFirtsSpace = indexOf( $text, " ");
#Edit File #You can edit a line or you can create a new one. #IF $LineToEdit = -1, a new line will be added in your created file.
CASE "!editfile": IF (UserIsAdmin($userName) == 1) THEN $Filename = "TestFile"; $Folder = "C:\Users\User\Desktop"; $NewText = "NewText "; $LineToEdit = 5; # -1 to create a extra line $Extension = ".txt";
#Delete File #By deleting a file, you can choose if you want to make a backup before deleting. #Keep value of '$CopyFolder' empty if you dont want to copy the file before deleting. #Otherwise enter the foldername where the backup need to be placed.
CASE "!deletefile": IF (UserIsAdmin($userName) == 1) THEN $Filename = "TestFile"; $Folder = "C:\Users\User\Desktop"; $CopyFolder = ""; #$CopyFolder is empty , no backup will be created. $Extension = ".txt";