Jump to content

botshara

Members
  • Posts

    83
  • Joined

  • Last visited

Details

  • Gang
    grove street

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

botshara's Achievements

Transformer

Transformer (11/54)

0

Reputation

  1. botshara

    Set delay

    setTimer setElementData and getElementData
  2. Hello! Im looking for cheap vps hosting in Eu. Currently im using ovh vps, but problem starts when server gets ddosed and when ovh mitigates my vps then I need limit packets per user per seconds in iptables otherwise players just get banned by ovh firewall after downloading 1.5mb. Even so this solution is not perfect and players sometime just get dropped. Some days ago I found hetzner, they have almost similiar prices to ovh, does anyone here had tried hetzner vps and knows it is worth to switch? I have read that if server gets ddosed then server can be offline for some seconds if so then this is not what im looking for. Please share your experience.
  3. I have also the same problem, but with images... After 1.5.7 client update it broke. In my case, It broke when load file from different resource, if load from local resource then no problem. -- WORKS http://mta/local/avatar.png -- BROKEN http://mta/cache/avatar.png
  4. This is very interesting topic, because on linux I get also much higher memory usage in comparsion with windows if I can trust what ipb resource is showing to me. If I get on linux 1,6gb ram usage then on windows i get only ~200mb with the same scripts.
  5. It would be cool if speech recognition and speech synthesis would be possible to use in MTA. It would open new horizons in creativity. This is possible in almost all CEF browsers which i have used, so probably it is also possible to implement it in MTA.
  6. Hello, Im looking for scripter who can make for me TV script. I need this script done in 2 weeks. Description about script: All data saving in mysql database and videos playing from youtube. Can place TV only where dimension > 0, only 1 TV per dimension and loads only when enter in dimension (for perfomance). GUI for selecting video from youtube and GUI opens when click on TV. My budget is 20 EUR. I will pay (paypal) only after I will see script working in your dev server. If you think you can do this then PM me.
  7. Yea, looks like problem is in interface script. Interface script store data in setElementData, and use getElementData to display data, maybe there is problem? Desync or something like that. Bug also happens with shorter text but with smaller fps drop.
  8. Hello! Im getting a huge fps drop when I use xmlNodeGetValue in dxDrawText. From 60 fps to 7 fps. Here is my code example. Btw I use library to make GUIs. xmlRules = xmlLoadFile( "commands/rules.xml" ) function testMyGui() help_window = interface:dxCreateWindow(x, y, width, height, tocolor(0, 0, 0, 125), false, "Help panel", (35/1080)*sy, tocolor(0, 0, 0, 225), tocolor(255, 255, 255, 255), nil) interface:dxAddBorder(help_window, "bottom", tocolor(255, 102, 255), 1) interface:setActiveGUI(help_window) interface:dxSetMovable(help_window, true) local tabPanel = interface:dxCreateTabPanel(0.025, 0.15, 0.95, 0.8, width*0.1521, true, help_window, tocolor(0, 0, 0, 125)) local tabRules = interface:dxCreateTab(tabPanel, "Rules", tocolor(0, 0, 0, 125), nil, tocolor(255, 255, 255, 255)) local RulesBox = interface:dxCreateTextWindow(0.025, 0.05, 0.95, 0.9, true, tabRules, tocolor(0, 0, 0, 100), tocolor(255,0,0,255), tocolor(0,255,0,255), false) interface:dxTextWindowAddText(RulesBox, xmlNodeGetValue( xmlRules ), tocolor(255, 255, 255, 255)) local tabOverview = interface:dxCreateTab(tabPanel, "Command usage", tocolor(0, 0, 0, 125), nil, tocolor(255, 255, 255, 255)) local tabCommands = interface:dxCreateTab(tabPanel, "All comannds", tocolor(0, 0, 0, 125), nil, tocolor(255, 255, 255, 255)) end addEventHandler("onClientResourceStart", getRootElement(), testMyGui)
  9. I need to check when player FALL OFF from the bike. For example I drive into pillar and I fall off from the bike. onVehicleExit doesnt trigger that. Ty bro that actually is that what i looked for.
  10. Hello, Im looking for server side event when player fall from the bike. Anybody?
  11. What do you mean with dx lib? Resource?
  12. Hello, Im trying to make inventory script and I want when I press right mouse button on the item then acurs my function. The problem is that dx functions doesnt support onClientClick by default, I looked in forum and I found some solutions where onClientClick checks for coords, but this variant is not suitable for me because i need also check which item I pressed. Also I cant use onClientGUIClick for example by creating empty label because onClientGUIClick doesnt work when I press right mouse button. Any ideas?
  13. It is possible automatically add oder by for column when open GUI?
  14. Why onClientGUIClick doesnt work on guiCreateTab ? tabZombies = guiCreateTab( "Top 50 zombie killers", tabs ) addEventHandler("onClientGUIClick", tabZombies, showZombieKillers, false ) function showZombieKillers() outputChatBox("hi") end
×
×
  • Create New...