Jump to content

Dedicated Server Failed To Start


En0cH_03
  • Pending



User Feedback


After looking at | Client_LOG 44 |,

[00:02:31]: [string "scripts/components/retrofitforestmap_anr.lu..."]:568: attempt to index local 'offset_a' (a nil value)

It appears that there's a wrong check for offset_a at retrofitforestmap_anr.lua:568:

            if offset_a.x and offset_a.z then
                offset_b = FindWalkableOffset(pos, startangle+(PI/3), 12, 12, true, true)
            end

This version should be correct:

            if offset_a then
                offset_b = FindWalkableOffset(pos, startangle+(PI/3), 12, 12, true, true)
            end
Edited by Tykvesh

Share this comment


Link to comment
Share on other sites

On 25.12.2020 at 00:22, Tykvesh said:

Baktıktan sonra | Client_LOG 44 | ,


Retrofitforestmap_anr.lua: 568 adresinde  offset_a için yanlış bir kontrol olduğu görülüyor :


                
            

Bu sürüm doğru olmalıdır:


                
            

Thanks for your help but I didn't understand where and what to change.

Could you explain a little more explanatory?

Share this comment


Link to comment
Share on other sites



Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
  • Create New...