Jump to content

Simi23

Members
  • Posts

    49
  • Joined

  • Last visited

  • Days Won

    2

Simi23 last won the day on May 7 2017

Simi23 had the most liked content!

Recent Profile Visitors

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

Simi23's Achievements

Rat

Rat (9/54)

13

Reputation

  1. It didn't load up. I will try to restart it. (I can't unless im not signed in, but I'll rewrite that script and restart the server.) OMG Solved it. Because of I can restart resources without being logged in from now, I could see the real error. IT WAS ONE F.... "=" symbol.... btw. I've wrote = instead of ==
  2. Even if I delete the whole script, still got it. Note that, not mta debug outputs that error, im using a lua checker plugin for notepad++. When i launch the resource (the problem is in the server side script) Everything appears to be nice, the login panel shows up, but when I press the login button, (it should trigger a server side event) its just saying that event is not added.(Before commenting out the script) yes, sure
  3. Still got the error. Even if I write nothing in the first line.
  4. Same error appears. Even if I rewrite the first line.
  5. Hello! I got this problem when I try to check my script: s_account_system.lua:1: unexpected symbol near '´' But when I searched for it, there is no such symbol like " ´ " in my script, and my first row looks like: local mysql = exports.mysql Any help?
  6. I think you should use this one and create a lua table or something for the markers, and you can make the markers visible on the map using a loop instead of getElementsByType("marker")
  7. addEventHandler("onClientGUIClick",resourceRoot, function() if ( source == removeserial ) then selected = guiGridListGetSelectedItem(GridBan) if selected ~= -1 then data = guiGridListGetItemText(GridBan, selected,1) triggerServerEvent("removeserial",localPlayer,data) guiGridListRemoveRow (GridBan,selected) end end end) This should do it I think.
  8. And if I use no binds, how can I use backspace to delete the last character? ~UPDATE~ Found it! I just need to use addEventHandler("onClientKey", getRootElement(), function)
  9. I can still use binds, because as i said, its not a gui editbox. I've made it with dx.
  10. Hello! There is a command: guiSetInputMode() I need it for an input box, but that box is not mta's gui, it's drawn by dx. So if I want to remove the last character, I need to use a bind for backspace. So I want to disable all the binds except that backspace. Can I do that?
  11. I can see other players, what do I wanna do with that?
  12. Hello! I've made a login panel. After the player logs in, he'll need to select which character he wanna play with. At this point, the player see the selected character in gta world (interior: 0) and a window with his characters. Because if it's interior 0, I want to make only the local player see that character in the world, how is that possible if I can't set the camera's dimension?
×
×
  • Create New...