Jump to content

AJXB

Members
  • Posts

    370
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by AJXB

  1. Client side for whitelist, seriously? Lol you're old mate, really old, now are people still scared of client side files? haha, cute.
  2. -- Client Side allowedSerials = { {"MYSERIAL"} -- Myself } function check () local SV = getPlayerSerial (localPlayer) if SV then for i,v in ipairs (allowedSerials) do -- loop the table if v == SV then -- if we got a match outputChatBox ('Welcome to ') else -- triggerServerEvent ('redirectNotAllowedPlayer',localPlayer) -- because redirectPlayer is serverside only end end end end addEventHandler ('onClientResourceStart',getResourceRootElement (getThisResource()),check) -- onClientResourceStart will do
  3. if you mean "can a user upload a photo to a website?" then I presume yes, PHP
  4. To help players who want to make a good server Thanks To help players who want to make a good server. If that did not help you, can help someone! Who? Who can't use the search box on the community.multitheftauto.com ? Just do something useful, would you?!
  5. This is pretty useless, why? just.. why? I can't believe this, what happened to creativity?..
  6. AJXB

    [REL] IVSE 1.3

    My database file is already in version 1.5
  7. AJXB

    [REL] IVSE 1.3

    Replace it with mine, from 1.5
  8. AJXB

    [REL] IVSE 1.3

    Do you have a .db file in the same folder as this resource? If you do, please upload it.
  9. AJXB

    [REL] IVSE 1.3

    The .db doesn't have to open using SQLite browser, just include it with the resource and run it, use the latest version without changing a thing, start the resource, and I repeat, WITHOUT changing a thing, and do /debugscript 3 and post the error you get
  10. AJXB

    [REL] IVSE 1.3

    Version 1.5 is my personal version, if it didn't work for you, you need Jesus.
  11. AJXB

    [REL] IVSE 1.3

    https://community.multitheftauto.com/index.php?p= ... s&id=10589 Updated. this is my personal build, .db file included.
  12. AJXB

    [REL] IVSE 1.3

    PM me your Team Viewer info mate.
  13. AJXB

    [REL] IVSE 1.3

    as I tried to help you, and you tried to get it working. PM me your Team Viewer info, and I'll fix it for you.
  14. AJXB

    RPG Medieval

    http://cs1.gamemodding.net/posts/2013-0 ... 5a5346.jpg You might want to use this.
  15. We do not give resources here, you posted many threads "requesting" resources, just a heads up.
  16. The text will change once you login.. using /login command Do /debugscript 3 and post the errors here. You can change the server side to: addCommandHandler ("acc", function (p) local account = getPlayerAccount (p) local accountName = getAccountName (account) triggerClientEvent ('handleClient',source,accountName) end ) After you change it, have the GUI opened, and do /acc it should work, if it didn't, post /debugscript 3
  17. http://codepad.org/5j6TjHwY I tried to give you a chance to use your brain cells. Just un-comment the guiSetText.
  18. AJXB

    Get time

    local realTime = getRealTime( ) local date = {(realTime.year)+1900,(realTime.month)+1,realTime.monthday} I added 1900 to the year, because getRealTime () will return 114 I added 1 to the month, simply, month day stays the same. Date[1] is the year Date[2] is the month Date[3] is the day
  19. function handleSetText (accountName) guiSetText (account1,accountName) end addEvent("handleSetGUIText",true) addEventHandler("handleSetGUIText",root,handleSetText )
  20. function onJoin () local account = getPlayerAccount (source) local accountName = getAccountName (account) triggerClientEvent ('handleSetGUIText',source,accountName) end If you can write two lines of code, you can complete this.
  21. Seriously? wow I really didn't notice. (sarcasm) on the server side: getPlayerAccount getAccountName triggerClientEvent Client side: guiSetText
×
×
  • Create New...