Jump to content

SjoerdPSV

Members
  • Posts

    39
  • Joined

  • Last visited

Recent Profile Visitors

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

SjoerdPSV's Achievements

Rat

Rat (9/54)

1

Reputation

  1. Start 'startup'. That resource will start any resource you need. I am currently working on the ACL on my private server, we didn't had access to the ACL file. It will start all resources in order ? automatically ? Yes it does. You should change your mysql details in database.slua. (Which could be found in some resources.) If you add the correct details it will set-up the database by itself, since it contains queries to add them automically.
  2. Start 'startup'. That resource will start any resource you need. I am currently working on the ACL on my private server, we didn't had access to the ACL file.
  3. The script is unfished, but it's located in Flint County, the car cinema. Or if it's the other version (there were 2) it's located in the Verona Mall.
  4. Apparantly I forgot to install one of those libraries, it's fixed now! Thanks for your help Mr_Moose, appreciated!
  5. Did that, but it still outputs the same error. root@vps218448:/home/mta/server# chmod u+x core.so net.so xmll.so root@vps218448:/home/mta/server# ./mta-server -bash: ./mta-server: No such file or directory
  6. Hello, I wanted to set up my private server on debian 7 today, did it loads of time before but this error doesn't disappear: I chmodded the file (as you can see in the picture) installed everything that's necessary, so I don't know what's wrong. Anyone who's able to help me? Thanks.
  7. Add LilDolla to the developers list, he did a lot of great things for GTI and deserves to be on that list. No matter what he did, you're not the one who decides who should and who shouldn't be on that list. No I am not being mad with you, but I don't want him to be excluded from this.
  8. function disableLogin(command) if (command == "login") then cancelEvent() end end addEventHandler("onPlayerCommand", root, disableLogin) There you go
  9. Hello, Could anyone help me, I want to round some numbers in my script to 1 decimal, but I don't know which Lua function I should use for that. For example, 1.36455 will be rounded to 1.4 etc.
  10. OWLGaming is a good server for RP imo.
  11. Hello, I wanted to install MTA on my VPS. I want to use it for my own server, as a 'second' screen. Sometimes I need to test something with 2 persons, but I can't since I only have 1 PC. I've installed GTA and MTA on it, but when I try to start MTA, I get the following error: http://puu.sh/gIePy/33f063672d.png I tried to install it manually, but I didn't succed in it, does anyone have a solution for this?
  12. LOL, it was because of that capital. Thanks for your help
  13. use triggerClientEvent (https://wiki.multitheftauto.com/wiki/triggerClientEvent) in the server side function which handles it.
  14. Hello I was scripting a GUI and for the button handling I made this function: function buttonHandling() outputDebugString("test1") local input = guiGetText(GUIEditor.edit[1]) if (source == GUIEditor.button[1]) then guiSetText(GUIEditor.edit[1], input.."1") outputDebugString("test2") elseif (source == GUIeditor.button[9]) then guiSetText(GUIEditor.edit[1], input.."2") elseif (source == GUIeditor.button[8]) then guiSetText(GUIEditor.edit[1], input.."3") elseif (source == GUIeditor.button[8]) then guiSetText(GUIEditor.edit[1], input.."4") elseif (source == GUIeditor.button[7]) then guiSetText(GUIEditor.edit[1], input.."5") elseif (source == GUIeditor.button[6]) then guiSetText(GUIEditor.edit[1], input.."6") elseif (source == GUIeditor.button[5]) then guiSetText(GUIEditor.edit[1], input.."7") elseif (source == GUIeditor.button[4]) then guiSetText(GUIEditor.edit[1], input.."8") elseif (source == GUIeditor.button[3]) then guiSetText(GUIEditor.edit[1], input.."9") elseif (source == GUIeditor.button[2]) then guiSetText(GUIEditor.edit[1], input.."0") end end addEventHandler("OnClientGUIClick", root, buttonHandling) But it doesn't work, the outputDebugString are not popping up in my /debugscript. I can't find out what's wrong with this and I'm 100% sure that all GUIelements are the right ones (the ones after source ==) Is it becuase I set it on read only? Or shouldn't that be a problem?
×
×
  • Create New...