Jump to content

The_GTA

Helpers
  • Posts

    821
  • Joined

  • Last visited

  • Days Won

    85

The_GTA last won the day on March 23 2023

The_GTA had the most liked content!

About The_GTA

  • Birthday 03/01/1993

Member Title

  • Forum Helper

Details

  • Gang
    developers
  • Location
    GTA community
  • Occupation
    modding the game
  • Interests
    meow

Recent Profile Visitors

6,936 profile views

The_GTA's Achievements

Hoodsta

Hoodsta (34/54)

  • Helpful Rare

Recent Badges

415

Reputation

  1. Good job. I have looked into the newest 1.6 features and I am impressed. I think the most impacting QoL improvement is for race servers that suffered from the FPS-bound tire-smoke effect. Now that the 2DFX particle spawning is time-based it should not be too bad. I am excited about the more-advanced engine functions and how that will be used by MTA scripters. Thank you for your continued effort to improve MTA!
  2. No problem, bro. This intellectual property theft is heavier than ever. In the past it was hindered by the intellect and perseverance of people. But now countless of machines that are capable to estimate and logically deduce using "examples" can be used for that purpose. The degeneration of society using such wild technology is inevitable if politics does not remove the money source. My idea is the following: - instead of being given the benefit of the doubt in court, CSG or higher language science software models (1) have to prove that they own the intellectual property rights to their output (goes in hand with the AI being a commercial product) - watch every company or entity involved in (1) by market and political checks, them having to apply to various programmes opening up their databases and activities - humanize internet technologies, partition the web, make an alternative "internet" Just some ideas. But the "as-if" principles that those crooks use could make any political safe-guard a joke. In the worst case the theft happens purely in energetical interactions not traceable by the human perception, hidden behind cryptograhically strong communication, output far-and-wide in stochastical spread.
  3. Dear MTA community, as an IT expert I have been closely following the recent trend in AI services a'la ChatGPT. Let me break to you that this matter has serious consequences to the IT world. Those bots seem to be performing intellectual property theft on a massive scale, devaluing the ideas of IT experts using their cheap solutions, not caring about the origins or comings of ideas they are trained with. Since even humans have a problem with estimating the worth of ideas and other people, you can see that IT experts will be worth jack **** in the future. To help aid this situation I recommend you to do the following: 1) delete your open source codebases or turn them private 2) think carefully which business ideas you share on the internet 3) do not use ChatGPT or similar AI bots to prevent your personality from being stolen Mind my words that those enemy AI experts are threatening the values of our society as we know it. Real people are about to lose their hard earned jobs, their value. You must join the resistance and fight. I wish you all a good future. Do not let these silicon valley people steal your uniqueness. Much love to you individuals. - Martin Turski, company owner of EirDev
  4. ChatGPT ist eine weltverändernde Form von künstlicher Intelligenz. In ihrer Art die Mehrdeutigkeit der Kommunikation zu erfassen und daraus zielgerichtet Antworten zu geben stellt eine Gefahr für unsere heutige Gesellschaft dar. Die grundfesten Ideale des Kapitalismus, der Wertschätzung werden beraubt in dem man seine eigene Existenz in diese Netzwerke opfert. Mit meinem Expertenwissen versuche ich euch zu erklären worum es in Wahrheit geht:
  5. I am happy to hear that! Have fun with this project. I agree. This workflow seems really complicated. Not much I can do about that though on the module's end. We know the steps of adjusting the server configuration and adding the binary. But I hope that people are willing to get into stuff that seems new to them!
  6. Yes, you can read files inside of any resource and adjust the meta.xml files according to rules. Be careful and do not add the same file twice. Also think about removing meta.xml entries whose files do not exist anymore.
  7. I would like to see a modloader that uses the scanDir API instead of the meta.xml. Also a personal webspace on the MTA server for user-submitted mods could be cool.
  8. Hello MTA developers, today I have added the Linux version of the FileSystem 2.0 release. I am sorry for the delay - caused by unnecessaringly technical and motivational factors - but this release is the most stable Linux version yet. It is made possible by directly linking to the deathmatch.so Linux module so that fileSystem.so does use the actual Lua implementations exported by MTA. I was unable to get a LuaRocks version ready because I do not understand how to integrate my custom Code::Blocks build system into it. If there is sufficient interest and straight-forward help I might deliver that too. Wouldn't want to disrespect the hard-effort by qaisjp and co. Only AMD 64bit is supported. Hit me up if you need any other platform. Download it here: https://green-candy.osdn.jp/external/releases/fileSystem_2_0_linux.zip Have fun! ?
  9. local function invMoveSlots(sinv, sslot, tinv, tslot) if not sslot or not tslot or not sinv or not tinv then return end local selectedSlot1 = sinv.items[sslot] local selectedSlot2 = tinv.items[tslot] sinv.items[sslot] = selectedSlot2 tinv.items[tslot] = selectedSlot1 end local isdragging = false; local draginv = false; local dragslot = false; local slotrender = false; function Inventory:drag(button,state,mouseX,mouseY) if button == 'left' then if state == 'down' then if (isdragging == false) then self.getSlotInfo = {self:getSlot(mouseX,mouseY)} firsSlot = self.getSlotInfo[4] if (firsSlot) then isdragging = true; draginv = self; dragslot = firsSlot; slotrender = self.fSlot; addEventHandler('onClientRender',root,self.fSlot) end end end if state == 'up' then if (isdragging) then self.getSlotInfo = {self:getSlot(mouseX,mouseY)} print(self.getSlotInfo[4]) if (self.getSlotInfo[4]) then invMoveSlots(draginv, dragslot, self, self.getSlotInfo[4]) end removeEventHandler('onClientRender',root,slotrender) isdragging = false; draginv = false; dragslot = false; slotrender = false; end end end end Your system is fundamentally flawed because it does not contain the global inventory list but you are ignoring my messaging so I won't remind you any further.
  10. Definition of the bind function? Actual error message?
  11. Yea so what? What is your fSlot anyway? Are you being serious?
  12. local function invMoveSlots(sinv, sslot, tinv, tslot) if not sslot or not tslot or not sinv or not tinv then return end local selectedSlot1 = sinv.items[sslot] local selectedSlot2 = tinv.items[tslot] sinv.items[sslot] = selectedSlot2 tinv.items[tslot] = selectedSlot1 end local isdragging = false; local draginv = false; local dragslot = false; local slotrender = false; function Inventory:drag(button,state,mouseX,mouseY) if button == 'left' then if state == 'down' then self.getSlotInfo = {self:getSlot(mouseX,mouseY)} firsSlot = self.getSlotInfo[4] if (firsSlot) then isdragging = true; draginv = self; dragslot = firsSlot; slotrender = self.fSlot; addEventHandler('onClientRender',root,self.fSlot) end end if state == 'up' then if (isdragging) then self.getSlotInfo = {self:getSlot(mouseX,mouseY)} print(self.getSlotInfo[4]) if (self.getSlotInfo[4]) then invMoveSlots(draginv, dragslot, self, self.getSlotInfo[4]) end removeEventHandler('onClientRender',root,slotrender) isdragging = false; draginv = false; dragslot = false; slotrender = false; end end end end This is just an example and does not contain the code for cross inventory dragging. You have to implement the list of inventories to do it.
  13. Oh, I remember. How about moveSlots?
  14. I don't see any fundamental design problems in your code. But you seem to have trouble with taking the right parameter to the right place. What does the getSlot method do and how is it defined?
  15. What should work? Can you describe it?
×
×
  • Create New...