Author Topic: Trucking destination bug  (Read 740 times)

0 Members and 1 Guest are viewing this topic.

Offline x4x

  • *
  • Posts: 366
  • Country: 00
  • Respect: +11/-12
  • Gender: Male
  • The Driver
    • View Profile
  • MCNR name: x4x
  • Discord name: x4xsa
Trucking destination bug
« on: December 14, 2023, 10:48:56 pm »
- What was the script version?


- Your in-game name (we may credit bug reporters with in-game cash if it's a major or exploitable issue)
Niovie

- What happened? Please give as many details as you can. Even if you think it's irrelevant it might be just the piece of information we need to pin point the issue.
    - Where were you?
    - What were you doing?
    - Did you have some sort of special circumstances happening at the time?


Sometimes there's a possibility that when trucking, the destination from where the stuff needs picking up will be the same as the destination where it needs to be left off.
I am not sure if this is a coincidence but this happened the next trucking after delivering the special cargo.

- Is this a reoccurring issue? Has it happened to you or others before?
Yes, it happened to me before as well but rarely.

- Please provide steps for us to reproduce the issue ourselves, if possible.
Go trucking and check for the destinations.

- Images and videos help a LOT. Press F8 in-game to take a screenshot and upload it here for us to see the issue for ourselves. Please crop/resize large images.


- Date and time of incident if known
Right now
« Last Edit: December 14, 2023, 10:52:22 pm by Niovie »

Online Jay_Dee

  • *
  • Posts: 149
  • Country: gb
  • Respect: +11/-0
  • Gender: Male
    • View Profile
  • MCNR name: Jay_Dee
  • Discord name: Jay_Dee#5156
Re: Trucking destination bug
« Reply #1 on: December 14, 2023, 11:31:21 pm »
Thankyou for the report. this will be investigated. Congrats on the easiest mission ever :)

Offline Ralsei

  • Banned
  • Weirdest Femboy 2022
  • *
  • Posts: 1092
  • Country: se
  • Respect: +32/-164
  • Gender: Female
  • герой
    • View Profile
  • MCNR name: Ralsei
  • Discord name: ralsiel
Re: Trucking destination bug
« Reply #2 on: December 15, 2023, 07:29:49 am »
This happens ever since the tucking update, not a bug just bad luck.

Offline Ardealul

  • *
  • Posts: 639
  • Country: 00
  • Respect: +17/-11
  • Gender: Male
  • [color=white]Why can't we use colors here[/color]
    • View Profile
  • MCNR name: Ardealul
  • Discord name: arduel
Re: Trucking destination bug
« Reply #3 on: December 15, 2023, 09:01:20 am »
This happens ever since the tucking update, not a bug just bad luck.
How is this not a bug? while(to==from){to=random(listOfDestinations)}

Offline overdoz

  • Banned
  • rizzgod
  • *
  • Posts: 227
  • Country: pk
  • Respect: +18/-30
    • View Profile
  • MCNR name: [wT]overdoz
  • Discord name: rizzlerdozz
  • Crew: Wu Tang forevaa
Re: Trucking destination bug
« Reply #4 on: December 15, 2023, 10:46:40 am »
This happens ever since the tucking update, not a bug just bad luck.

How is this not a bug? while(to==from){to=random(listOfDestinations)}

It is indeed a bug and requires plenty of hours of testing. Will investigate this further.
So the video is not unlisted ill wait for an admin to respond this. You can see on this video and the actions he shows that he was killed by aventador and you and your friends were involved in killing ardealul. Which means your revenge has been already taken but still you somehow started shooting them even when they were running and wasnt shooting you. ill wait for admins to respond this appeal now
Goodluck

Offline Ardealul

  • *
  • Posts: 639
  • Country: 00
  • Respect: +17/-11
  • Gender: Male
  • [color=white]Why can't we use colors here[/color]
    • View Profile
  • MCNR name: Ardealul
  • Discord name: arduel
Re: Trucking destination bug
« Reply #5 on: December 15, 2023, 01:51:04 pm »
Hi Niovie. Thanks for bringing this issue to our attention. I have logged the issue and will inform you of an update when it's available. You can find the information relating to the logged issue below.
Bug report by Niovie(forum topic #18953)
Issue #3576
IssueFrom&To in trucking can both be the same place
DescriptionFrom time to time, the from and to when starting a trucking mission can be the same place.
Script areaIdk
PriorityMedium
Logged byArdealul
Assigned toMike
StatusNew

Offline Ardealul

  • *
  • Posts: 639
  • Country: 00
  • Respect: +17/-11
  • Gender: Male
  • [color=white]Why can't we use colors here[/color]
    • View Profile
  • MCNR name: Ardealul
  • Discord name: arduel
Re: Trucking destination bug
« Reply #6 on: December 15, 2023, 01:51:23 pm »
Moved to Confirmed Bugs.

Offline x4x

  • *
  • Posts: 366
  • Country: 00
  • Respect: +11/-12
  • Gender: Male
  • The Driver
    • View Profile
  • MCNR name: x4x
  • Discord name: x4xsa
Re: Trucking destination bug
« Reply #7 on: December 15, 2023, 02:35:58 pm »
How is this not a bug? while(to==from){to=random(listOfDestinations)}

@Ardealul Make the entire functionality recursive or remove from the array the 'from' element and extract a 'to' from there. :D

Offline Ardealul

  • *
  • Posts: 639
  • Country: 00
  • Respect: +17/-11
  • Gender: Male
  • [color=white]Why can't we use colors here[/color]
    • View Profile
  • MCNR name: Ardealul
  • Discord name: arduel
Re: Trucking destination bug
« Reply #8 on: December 15, 2023, 02:46:46 pm »
@Ardealul Make the entire functionality recursive or remove from the array the 'from' element and extract a 'to' from there. :D

Removing it will use more memory because you need to clone the array if it's in a function not a global var. While is the best cause it only gets executed if the condition is met anyways