Jump to content

goodiewarrior

Members
  • Posts

    42
  • Joined

  • Last visited

Everything posted by goodiewarrior

  1. Is there any official edit, or any resource? Because default race MTA does not support Deathmatch ...
  2. I do not know SQLite and I'd like to know the "BIG" difference between SQLite and AccData. I also want to as if I could move everything from accData to SQLite.
  3. I mean, is there any difference checking if someone is logged or not?
  4. I know how to replace a vehicle DFF and TXD but I would like to know how to have different type of vehicles in a server. Like, for example, players A chooses Infernus Texture 1. And player B chooses TXD 2. I want to do it like player A sees his car TXD1, but sees Player B TXD2, too!
  5. I was wondering if there is any difference between: if getAccount... then And if isGuestAccount(...) then
  6. actually I meant the Teextures, how you see them Not the colors
  7. download another toptimes script .. Isn't it easier if I edit the race resource, and add some lines saying that if you get a Hunter, the map finishes and you win ????
  8. that wll do nothing ._. then what must I do?
  9. I want to replace the light textures, to use custom ones.
  10. if not aclGetGroup("Admin") then outputChatBox("Awesome") That code will output 'Awesome' if the ACL group does not exist. You used 'if not aclGetGroup("Admin")'. outputDebugString("Does 'Admin' group exist? "..tostring(aclGetGroup("Admin"))) If it outputs false or nil, it doesn't exist. If it outputs something like 'userdata', it's an ACL group. Thanks, I found out the group Admin didn't exist. And then I added it via the admin panel, and I searched a bit and found out that I was using a file called "editor_acl", because I was testing out with the MTA Editor. Is this normal or it must be changed? Will it use the normal acl if I start MTA Server.exe?
  11. Anything else? I didn't understand ._.
  12. Isn't that DD, the mode where you kill others or crash them to the water?
  13. I haven't played MTA since a time ago and I just started a local server to test a DM map. When I reached the Hunter, the map didn't finish. I used the "race" resource. What must I use?
  14. I do not understand why these lines do not work. Debugscript 3 says: How? The second argument is aclGetGroup ("Admin"), so why doesn't it work? function ACLCheck(player, command) local account = getAccountName(getPlayerAccount(player)) local arena = getElementData(player, "Arena") if isObjectInACLGroup ( "user." .. account, aclGetGroup("Admin")) then --bugged return true end ------------- end I tried to output account and tostring(account), BOTH worked. I tried to output "Awesome" if I got the Admin ACL Group, and guess what? if not aclGetGroup("Admin") then outputChatBox("Awesome") This worked, so the script does not receive the acl group. WHY? PD: and yes, the Admin group exists. I even tried with Console group, too.
×
×
  • Create New...