Jump to content

Timp rămas până la Black Week

Pentru detalii complete despre promoție click aici

Black Week a început!

Pentru detalii complete despre promoție click aici

D J C

VIP
  • Posts

    1678
  • Joined

  • Last visited

  • Days Won

    1

D J C last won the day on November 19 2020

D J C had the most liked content!

6 Followers

About D J C

  • Birthday 12/09/2002

Contact Methods

  • Website URL
    https://github.com/JohnyCore/
  • Steam ID
    Johny_Core
  • Discord
    DjC#3088
  • Instagram
    Johny._.core

Profile Information

  • Location
    Gilan, Iran

Previous Fields

  • Real name
    Amir Mohammad
  • RPG Nickname
    DjC

Recent Profile Visitors

3684 profile views

D J C's Achievements

Experienced

Experienced (11/14)

  • 14 Consecutive Logs
  • 7 Consecutive Logs
  • 1 Reaction Received
  • 50 Reactions Received Rare
  • 200 Reactions Received Rare

Recent Badges

293

Reputation

  1. Nume: DjC Dovezi: 1 (hat): https://imgur.com/Q5DFrZm https://imgur.com/T3o8kTg https://imgur.com/ZSPa9WA https://imgur.com/ix77fxH 2 (candyshop): https://imgur.com/LCS0LKh https://imgur.com/fPE0EsG 3 (odd): https://imgur.com/xJ5FFDA 4 (even): https://imgur.com/Do1TRom Alte informatii: - Feedback: mersi
  2. Name : DjC Evidence : https://imgur.com/PAfHUsd https://imgur.com/j898ZCt https://imgur.com/O7K5LdG Other Info: What bro is saying F eedback:
  3. Version 1.0.2

    12 downloads

    B-Zone Speedometer - Enhanced Real-Time Speed Display Classic and Nostalgic, this is what you are looking for, Enjoy a cleaner, classic textdraw experience, but in real-time! This mod offers a smoother, real-time display of vehicle speed in San Andreas, specifically designed to replace server textdraws that often cause lag and display issues. With the Speedometer, your speed is shown in real-time with the format Speed: XX Km/h, providing a much more fluid experience while driving. Features: Displays vehicle speed accurately without lag. Fixes the visual issues caused by the server’s default textdraws on B-Zone. Optimized to prevent server-induced delays and improve overall gameplay experience. Installation: Download and install MoonLoader Place the Lua script file into the `moonloader` folder within your GTA SA directory. Place the `.lua` file in your MoonLoader `scripts` folder. Start your SA:MP server and enjoy the real-time speedometer! This mod is open-source and safe to use. You can review the code yourself to verify its safety. It is built with transparency and for the benefit of the SA:MP community. Source: https://github.com/JohnyCore/B-Zone-Speedmeter Video: Feel free to leave feedback or report any bugs on the GitHub page. Contributions and suggestions are always welcome to improve the mod further!
  4. Name: DjC Evidence: https://imgur.com/v2gXGsV, https://imgur.com/2yclzTL, https://imgur.com/70y64UH https://imgur.com/0x3oO9c, https://imgur.com/pySdM5m Other information:- Feedback: -
  5. Nume: DjC Dovezi: https://imgur.com/L5hQUro, https://imgur.com/seHxQ6x, https://imgur.com/NQ4FuGj https://imgur.com/yumH6pK, https://imgur.com/AvliC4D https://imgur.com/wT3G6ZG Alte informatii: Nice Feedback: -
  6. Hope your doing well around there. Looking forward to seeing you in this forum again )

  7. Thanks for the kind words! I’m glad to hear you love the optimization. It’s awesome that it works well with various game assemblies now. ❤️ I appreciate the suggestion to upload it to the forum’s file section. I’m still looking to get approval from higher staff first to ensure everything's in line with server rules. Once I have that, I’ll definitely consider sharing it with you guys!
  8. Hey, thanks for the comment! I totally get where you're coming from. The goal behind the LUA version isn’t to create an unfair advantage, it's just to make the drifting smoother and more stable compared to the CLEO version and we already have in Forum, which has caused a lot of issues. of course, any mod can be abused if used in the wrong context, like during chases. I'm open to any suggestions on how we could be sure that it's only used for what it was intended and avoid situations where it could give players an edge in unfair scenarios. I appreciate the feedback, but I think there's a misunderstanding. The purpose of my post wasn’t to compare preferences in car rotation or to spark a debate on which language is better for mods. which is already evident in the first YouTube video I included. The rotation I’ve improved in the Lua version eliminates the unnecessary and unrealistic movement that the CLEO mod creates. And let’s be real and of course not to offense, it’s 2024. People are moving to more modern and efficient solutions like LUA instead of sticking with older, less optimized options like CLEO. It’s not just about preference, it’s about improving stability and performance for everyone. I’m not looking to repost this mod on the forum for public use already. my goal was to get approval from higher staff to make sure it's fine to use on the server. The optimizations I’ve made might be subtle to some, but the real change is in how much smoother and crash-free it runs in LUA, as I include a YouTube video at the first place: I’d appreciate if we could keep the conversation focused on the title of the forum, not just personal preferences. Since you’re staff on the server, do you think this code is safe for server use or not? It would be great if we could involve higher staff to be sure we’re 100% sure about this.
  9. Hello @ Kelton , @ Tupi . I’ve optimized and converted the drift mod from CLEO to Lua, which is now smoother and more realistic in terms of car rotation and acceleration during drifts. It’s posted and also approved in B-Zone Rules and also Forum, and does the same thing as the original but with more logical handling and no unfair advantage. Please take a moment to check it out and compare it with the CLEO version. I’ve included a YouTube video showing the CLEO version that’s currently being used by a lot of players and the improvements in my Lua code. All I did was convert the CLEO code to Lua and lower a single variable, and it works perfectly without issues. require "lib.moonloader" local playerCar local carSpeed function main() if not isSampLoaded() and isSampAvailable() then return end while true do wait(0) if isCharInAnyCar(playerPed) then playerCar = storeCarCharIsInNoSave(playerPed) carSpeed = getCarSpeed(playerCar) isCarInAirProper(playerCar) setCarCollision(playerCar, true) if isKeyDown(VK_LSHIFT) and isVehicleOnAllWheels(playerCar) and doesVehicleExist(playerCar) and carSpeed > 5.0 then setCarCollision(playerCar, false) if isCarInAirProper(playerCar) then setCarCollision(playerCar, true) if isKeyDown(VK_A) then addToCarRotationVelocity(playerCar, 0, 0, 0.05) -- in Drift.cs this variable is 0.15 end if isKeyDown(VK_D) then addToCarRotationVelocity(playerCar, 0, 0, -0.05) -- in Drift.cs this variable is -0.15 end end end end end end The CLEO drift mod (drift.cs) has caused numerous bugs and crashes for players due to its limitations and lack of optimization. In contrast, the Lua version resolves these issues, performing flawlessly thanks to its streamlined code and optimizations. By converting the mod to Lua, I was able to significantly reduce the resource usage, which not only improves performance but also stabilizes the mod on various setups: In short, Lua is superior to CLEO for this type of modification because it's more versatile, has a smaller footprint, and provides a more stable environment - leading to fewer bugs and crashes. Many players have reported issues with the CLEO version, while the Lua version runs perfectly without any problem. Looking forward to your feedback, and can I get a approval of using this. if not, I would love to hear your comment. Best regards. ❤️
  10. - Nume: DjC - Rang: 4 - Echipa curentă: Roads - Echipa în care doresc: SWAT - Motivul: raport sounds easier in Rank 4 - Alte precizări: Multumesc!
  11. Nume: DjC Dovezi: https://imgur.com/a/Fgbojcz Alte informatii: La mulți ani, B-Zone! Feedback: very bine
  12. Nume: DjC Dovezi: https://imgur.com/GG7U1qu | https://imgur.com/Cg9rR9V | https://imgur.com/DraPjcH Alte informatii: La mulți ani, B-Zone! Feedback: Best
  13. D J C

    Cerere Grad - DjC

    Discord ID: DjC#3088 | johny_core Gradul/Gradele dorite: VIP Department Member Link catre profilul RPG: https://www.rpg.b-zone.ro/players/general/DjC Rank bar-ul profilului RPG:
  14. Nume: DjC Dovezi: https://imgur.com/a/G0kRqfO Alte informatii: La mulți ani, B-Zone! Feedback: Super
  15. https://www.imdb.com/title/tt2442560/ https://www.imdb.com/title/tt6439752/
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.