Jump to content

qaisjp

Retired Staff
  • Posts

    2,344
  • Joined

  • Days Won

    10

Everything posted by qaisjp

  1. qaisjp

    Doublekill :S

    offtopic - sorry but this has to be said, jaysds1 stop backseat modding -.-
  2. onClientMouseMove freecam Pi
  3. You already know, Multi Theft Auto is the best.
  4. It doesn't make the entire script for you, just the gui needed.
  5. ^^ Point... maybe have a bladder element data and when you eat or drink put it higher.. and randomly put the bladder higher and if level == 100 then pee() end
  6. ^^ Point. Lool. (i'm going to stop posting useless messages)
  7. I was going to say GTFO. after you said that. joke.
  8. Interesting. Thanks John.
  9. function dxDrawBorderedText(text, left, top, right, bottom, color, scale, font, alignX, alignY, clip, wordBreak,postGUI) for oX = -1, 1 do -- Border size is 1 for oY = -1, 1 do -- Border size is 1 dxDrawText(text, left + oX, top + oY, right + oX, bottom + oY, tocolor(0, 0, 0, 255), scale, font, alignX, alignY, clip, wordBreak,postGUI) end end dxDrawText(text, left, top, right, bottom, color, scale, font, alignX, alignY, clip, wordBreak, postGUI) end
  10. and what would 1.1 be?
  11. qaisjp

    idle cars?

    Edit castillo's code, see the setVehicleIdleRespawnDelay, it is set to 2 seconds (2000ms = 2secs), you edit it yourself and try doing it
  12. **----------** (no it isn't a bump) **-----------------** I have scripted a headlight colour changer with scroll bars and stuff, but will it cause a massive lag if it updates the light every scroll (when all players do it and there are 100 players?) -- I want to store "accountname" and "namecolour" data into a mysql database, I got it working smooth, but I am not comfortable with it being a TEXT datatype (i dunno why ), I don't know what datatype to put, please assist me. -- wtf is this OnPlayerModInfo
  13. qaisjp

    or...

    Damn that sux. THanks.
  14. So tell me what, 1.1 or 1.0.5..? (1.1 is i can get right now, 1.0.5 i have to ask my friend)
  15. https://community.multitheftauto.com/index.php?p= ... ls&id=2572 I love the paint that is inside it. https://community.multitheftauto.com/index.php?p= ... ls&id=2582 wants to delete it
  16. Firstly it isn't bumping, stop spamming the forum and increasing your post count -.- Someone sharing there thoughts is on a resource isn't always bumping -.-
  17. qaisjp

    Database MTA

    Take a look @ this tutorial, it'll help you a little. https://forum.multitheftauto.com/viewtopic.php?f=108&t=34686
  18. qaisjp

    Stats system

    Use the EDIT button instead of double posting.
  19. It means something is repeating itself over and over again.
  20. Indeed, brilliant idea for a roleplay.
  21. qaisjp

    Banner Help

    col = {} col.black = tocolor(0,0,0,200) col.npctitle = tocolor(142,196,131,255) newsMsg = { "Welcome to XtremeRoleplay (0.1a)!", "right mouse hold = rotate camera, scroll = zoom.", "This server has been built upon the LineageII gamemode that never released and was developed by Aibo." } text = newsMsg[1] local start = getTickCount() function drawInfoBox() --[[dxDrawRectangle(0,sh-24,sw,sh,col.black) dxDrawText(test, 10,sh-20,sw,sh,col.npctitle, 1,"default")]] local now = getTickCount() local time = now - start local scale = 0.6 local font = "bankgothic" local duration = 30000 local width = dxGetTextWidth(text, scale, font) dxDrawRectangle(0, sh-24, sw, sh, col.black) if time > duration then start = now text = newsMsg[math.random(1, table.getn(newsMsg))] end dxDrawText(text, math.mod(time, duration) / duration * (sw + width) - width, sh-20, sw, sh, col.npctitle, scale, font) end addEventHandler("onClientPreRender", drawInfoBox) This script is NOT stolen from Jesseunit's Fallout Roleplay, this script was scripted by The_GTA and Jesseunit, this script is an open script. Portion taken from LineageII by Aibo (the colours part) It will be very easy to edit to make it show an image, try it yourself.
×
×
  • Create New...