Jump to content

.WhiteBlue

Members
  • Posts

    18
  • Joined

  • Last visited

Recent Profile Visitors

1,636 profile views

.WhiteBlue's Achievements

Civilian

Civilian (7/54)

1

Reputation

  1. This price includes connecting the player's panel to any game mode.
  2. Hi. I will make an application for IPS 4, even connected to the MTA server. I am able to design an application according to the client's requirements. Price: from $55 Payments: PayPal/PaysafeCard Contact: - Discord: Łajcior#2830 - Private Message The above application works on my forum: www.project-volta.pl In addition, I will convert this panel to the customer's range.
  3. Custom chat box in MTA: SA for sale. https://www.youtube.com/watch?v=4c54Ff0aVLI What does it have? - Detection of commands - /me and /do commands - Anti spam - Wrapping poems - Scroll up/down chat messages - Alpha animation for new messages - Avatar system and more ... Discord: .WhiteBlue #1048
  4. After removing false, dashboard rectangle is not visible.
  5. I just have to create this pedo using the export you provided?
  6. I do not understand this topic. Could you explain to me what to do?
  7. Hi. I have a problem with post gui in the object preview. The object is behind the background and should be in front of the background. My code: local ped = createPed(getElementModel(localPlayer), 0, 0, 0) setElementInterior(ped, getElementInterior(localPlayer)) setElementDimension(ped, getElementDimension(localPlayer)) exports['object_preview']:createObjectPreview(ped, 0, 0, 180, 0.5, 0.5, 0.5, 0.5, true, true, false) Postgui I have disabled in my rendering. I tried to change the render priority but no effect. Help me. Please !
  8. @idarrr Did not work. Now it works the other way round. I Scroll down, it goes up. -- Scroll local visibleHeight = ((list['sizeY'] * 250) / 12) local overallHeight = (#guiSystem_element['list']['item'] * 20) local scrollPosition = (guiSystem['rowStart']) local itemCoorY = list['posY'] local currentCoorY = itemCoorY if overallHeight <= visibleHeight then return end newY = scrollPosition/100*(overallHeight-visibleHeight) currentCoorY = itemCoorY - newY outputChatBox(currentCoorY) dxDrawImage((((list['posX'] + list['sizeX']) - 7.5) * scaleX), (list['posY'] * scaleY), (1 * scaleX), (space_0 * scaleY), 'i/scroll/scroll.png', 0, 0, 0, tocolor(255, 255, 255, 255), false) dxDrawImage((((list['posX'] + list['sizeX']) - 11.5) * scaleX), (currentCoorY * scaleY), (9 * scaleX), (10.5 * scaleY), 'i/scroll/scroll_circle.png', 0, 0, 0, tocolor(255, 255, 255, 255), false) Regards. ------------------------------ I Fixed. Only now does not stop. -- Scroll local visibleHeight = ((list['sizeY'] * 250) / 12) local overallHeight = (#guiSystem_element['list']['item'] * 20) local scrollPosition = (guiSystem['rowStart']) local itemCoorY = list['posY'] local currentCoorY = itemCoorY newY = scrollPosition/100*(overallHeight-visibleHeight) currentCoorY = itemCoorY + newY outputChatBox(newY) dxDrawImage((((list['posX'] + list['sizeX']) - 7.5) * scaleX), (list['posY'] * scaleY), (1 * scaleX), (space_0 * scaleY), 'i/scroll/scroll.png', 0, 0, 0, tocolor(255, 255, 255, 255), false) dxDrawImage((((list['posX'] + list['sizeX']) - 11.5) * scaleX), (currentCoorY * scaleY), (9 * scaleX), (10.5 * scaleY), 'i/scroll/scroll_circle.png', 0, 0, 0, tocolor(255, 255, 255, 255), false)
  9. Hi. I made myself a GUI system. Time has come for scrolling system. I want the dot to reach the end of the list. My code: function clamp(low, value, high) return math.max(low, math.min(value, high)) end local scrollPosition = clamp(5, space_0 * guiSystem['rowStart'], space_0 - 16) outputChatBox(scrollPosition) Legend: guiSystem['rowStart'] - From position (default value: 1) guiSystem['rowStop'] - To position (default value: 10) #guiSystem_element['list']['item'] - Items (default value: 20) space_0 - List height (default value: 200) My list include 20 items. The displayed items are 10. Please help ! Regards.
  10. I have the same problem again. I installed Debian 7 (64 bits) and I used this guide: After installing the add-ons: zip unzip ia32-libs lib32ncursesw5 lib32readline5 screen Create user commands: sudo adduser --system --group --shell /bin/bash user adduser user sudo Then, I am using this: https://wiki.multitheftauto.com/wiki/Installing_and_Running_MTASA_Server_on_GNU_Linux After starting the server bug: MTA:BLUE Server for MTA:SA libssl.so.0.9.8: cannot open shared object file: No such file or directory ERROR: Loading network library (net.so) failed! Press Q to shut down the server! HELP!
  11. Solved. I installed Debian 7. Thanks
×
×
  • Create New...