I am using the loader files for H7 devices and I followed the examples by STM and other. Theirs seems to be working but not mine. Like the data is twisted upside down. Must be something simple somewhere in the code but I cannot find.
This is a simple ground service plugin, which allows you to see the GPU, fuel truck, stairs, loaders and catering trucks. The point of the script is only to add static objects around the plane. Loaders, catering trucks and stair trucks have a simple drive-up animation. Other objects are not animated. This script doesn't actively load or refuel the plane.
In the default install, there is only default white livery for the stairs, belt loader and the catering truck. Download the liveries you want (or the All-in-one pack if you want) from the google drive by clicking the first link in the download options (1ivFU2EGJg7xW8reuaeXdWz7SvRTPHhsm). Extract the contents from zip files into "XPlane 11/Resources/plugins/FlyWithLua/Scripts/Simple Ground Service/liveries"
There is also a paintkit in the drive if you want to make your own liveries. DM me if you want your liveries to be uploaded to the drive. I'm quite busy with other stuff, so you can upload the liveries and new profiles to xplane forums.
You can set a keybind to toggle the ground service menu in X plane settings ("FlyWithLua/Simple_Ground_Service/"). You can also open the menu from FlyWithLua macros. Some planes have the possibility to use automatic system, which shows the object when opening doors. You can choose to disable the automatic setting from the menu at any time. In v0.7 automatic placement toggles the front left stairs as well, but you can disable that setting from the menu if you want to use jetway and still have the automatic placement for other objects.
The update changed the placement system significantly, so there might be inaccuraties in some profiles. I've tried my best converting the old profiles to the new system, but I'm not able to try all of them. If you notice issues, please try to fix them with the profile mode and you can share the new profile created in the aircraft directory for other users to enjoy.
You can create profiles for other planes in "profile mode" which can be enabled from the menu. Please read the documentation for more instructions, although the new profile mode should be pretty straight forward to use.
- In some cases the objects might fail to unload and wont be hidden at all and after a livery change you might see two same objects inside eachother. This seems to happen if you reload the object too fast, eg first enable, then disable, then enable the object again. This might also happen when changing between liveries too fast or changing the livery immediately after requesting the objects. This might also happen in profile mode when switching between pages too fast or changing the loader type. To prevent this, wait for the object to fully load first and only make the next move (livery reload, page change in profile mode, disabling and enabling objects etc.) after that.
Compared to Jar Design's Ground Handling Deluxe this plugin is lighter on the hardware resources, provides the ability of automatic deployment of ground handling operations based on aircraft conditions (door state). Where it lacks is the advanced animation and model quality which in my opinion is better in Ground Handling Deluxe.
Thanks for the review! The 0.7.1 update allows you to hide the passengers. You can do that by scrolling down in the menu and clicking "profile mode". There will be a checkbox to show or hide the passengers. Remember to save the profile!
Hey Y'all, I just downloaded the Simple Ground Service file and followed the instructions, I have the latest version of the FlyWithLua and every time I try to use it my lua script always gets moved to the quarantined. I don't exactly know if this is something I am doing wrong or just a glitch on Lua's part but if anyone could help me out that would be nice.
The amazing X-Plane community is proving its worth once more. This is an EXCELLENT freeware GHS plugin which gave life to all my flights. It's working seamlessly with the Zibo 738 and automatically adds vehicles based on the open doors. It's payware quality given to us for free. Thank you Laurenzo for this gem. I hope you will continue to support it in the future.
Addon is just AMAZING. But I guess this is a bug. When I close doors, passengers stay in the air and ground crew still stays. Just to let you know.
I rate this 5/5, keep up the good work! Hoping to see people animated soon, if you can of course. Xplane is always amazing thanks to all devs working for it.
I downloaded the linked files and followed the installation instructions, but the LuaNG plugin keeps quarantining the Simple Ground Service script. If I put it back where it should be, LuaNG moves it back to Quarantine..
Use the most popular data loader for Salesforce to quickly and securely import, export and delete unlimited amounts of data for your enterprise. Get started quickly with our simple, 100% cloud solution.
To start using NGINX Plus or NGINX Open Source to load balance HTTP traffic to a group of servers, first you need to define the group with the upstream directive. The directive is placed in the http context.
Servers in the group are configured using the server directive (not to be confused with the server block that defines a virtual server running on NGINX). For example, the following configuration defines a group named backend and consists of three server configurations (which may resolve in more than three actual servers):
To pass requests to a server group, the name of the group is specified in the proxy_pass directive (or the fastcgi_pass, memcached_pass, scgi_pass, or uwsgi_pass directives for those protocols.) In the next example, a virtual server running on NGINX passes all requests to the backend upstream group defined in the previous example:
The Random load balancing method should be used for distributed environments where multiple load balancers are passing requests to the same set of backends. For environments where the load balancer has a full view of all requests, use other load balancing methods, such as round robin, least connections and least time.
By default, NGINX distributes requests among the servers in the group according to their weights using the Round Robin method. The weight parameter to the server directive sets the weight of a server; the default is 1:
In the example, backend1.example.com has weight 5; the other two servers have the default weight (1), but the one with IP address 192.0.0.1 is marked as a backup server and does not receive requests unless both of the other servers are unavailable. With this configuration of weights, out of every 6 requests, 5 are sent to backend1.example.com and 1 to backend2.example.com.
NGINX Plus supports three session persistence methods. The methods are set with the sticky directive. (For session persistence with NGINX Open Source, use the hash or ip_hash directive as described above.)
In the example, the srv_id parameter sets the name of the cookie. The optional expires parameter sets the time for the browser to keep the cookie (here, 1 hour). The optional domain parameter defines the domain for which the cookie is set, and the optional path parameter defines the path for which the cookie is set. This is the simplest session persistence method.
The mandatory zone parameter specifies a shared memory zone where all information about sticky sessions is kept. In our example, the zone is named client_sessions and is 1 megabyte in size.
If the max_conns limit has been reached, the request is placed in a queue for further processing, provided that the queue directive is also included to set the maximum number of requests that can be simultaneously in the queue:
Note that the max_conns limit is ignored if there are idle keepalive connections opened in other worker processes. As a result, the total number of connections to the server might exceed the max_conns value in a configuration where the memory is shared with multiple worker processes.
If an upstream block does not include the zone directive, each worker process keeps its own copy of the server group configuration and maintains its own set of related counters. The counters include the current number of connections to each server in the group and the number of failed attempts to pass a request to a server. As a result, the server group configuration cannot be modified dynamically.
When the zone directive is included in an upstream block, the configuration of the upstream group is kept in a memory area shared among all worker processes. This scenario is dynamically configurable, because the worker processes access the same copy of the group configuration and utilize the same related counters.
The zone directive is mandatory for active health checks and dynamic reconfiguration of the upstream group. However, other features of upstream groups can benefit from the use of this directive as well.
For servers in an upstream group that are identified with a domain name in the server directive, NGINX Plus can monitor changes to the list of IP addresses in the corresponding DNS record, and automatically apply the changes to load balancing for the upstream group, without requiring a restart. This can be done by including the resolver directive in the http block along with the resolve parameter to the server directive:
In order for Microsoft Exchange connections to pass to the upstream servers, in the location block set the proxy_http_version directive value to 1.1, and the proxy_set_header directive to Connection "", just like for a keepalive connection:
In the http block, configure a upstream group of Microsoft Exchange servers with an upstream block named the same as the upstream group specified with the proxy_pass directive in Step 1. Then specify the ntlm directive to allow the servers in the group to accept requests with NTLM authentication:
64591212e2