Jump to content

Fist

Members
  • Posts

    433
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Fist

  1. You will need to create your own chat handling, same for private messaging if you want to prevent that as well and then you can manage to do that type of stuff. edit: actually never mind. There's a chat event on client as well. You can use that to detect whose message is who and then cancel it if it's one of blocked players. https://wiki.multitheftauto.com/wiki/OnClientChatMessage This should do the trick local blocked_players = {} addEventHandler("onClientChatMessage",root,function() if (blocked_players[source]) then cancelEvent() outputChatBox(getPlayerName(source).." wrote something in chat, but you blocked him.") end end) addCommandHandler("block",function(cmd,plyname) local target = getPlayerFromName(plyname) if (plyname and target) then if (not blocked_players[target]) then blocked_players[target] = true; outputChatBox("player"..plyname.." blocked!") else blocked_players[target] = nil; outputChatBox("player"..plyname.." unblocked!") end else outputChatBox("player not found") end end)
  2. Should be working, make sure this script is running on server side and als make sure in meta.xml file there's actually code of line that uses that file as server side script.
  3. Fist

    FOV +

    https://wiki.multitheftauto.com/wiki/SetCameraFieldOfView or create your own Camera system using https://wiki.multitheftauto.com/wiki/SetCameraMatrix but this gonna be way complicated to do but allows for future extendibility.
  4. Unfairly? You are just low enough not to think about having a decent price on your product. There's even selling games 5 times cheaper that are thousand times better and has put thousand times more work in it than your dead gamemode type on mta.
  5. It's kinda lame that you sell this for many people for such high price. At least if you'd sell it to variety of people then price should've been lower than what you asked for.
  6. Send me pm of your number, i'll message you. Only what here looks like of a scam is you and your senseless accusations of someone trying to scam. You should be ashamed of yourself, 'cause you got 0 brain cells.
  7. You put wrong number. Do you have discord? If so, give me. I can add you there. @F5AMH-
  8. This looks really nice so far. Good job! Design on most part is really well as well only on few things it isn't as good as for example dropdown box. Dropdown box is designed really nicely. I'd recommend to make faster animations for Switch and Radioboxes and Switch color when turned on should be blue as the buttons to keep same theme otherwise it's just completely different. Same for editbox, that line which is animated. It doesn't appeal as much if it's that slow. Checkbox design needs to be redesigned completely, it just doesn't fit this theme. About gridlist, complete black background just doesn't work with this, needs to be recolored, design for it looks nice. Scrollbars are really nice too and buttons as well. Also about edit box, you need to add a background for it so it's not transparent. Otherwise it's kind hard to notice the edit box but i like the idea for design. Good job!
  9. Fist

    Map loading

    Your streamer doesn't change that much, still pretty much same thing.
  10. For 2018 design looks horrible neither anything really has been changed. Same concept, same style just a tight bit different. Not a "renew" but a bad copy.
  11. Fist

    Animations stuff

    You need to use setPedAnimation on server side not on client, that's why only you see doing it.
  12. I just told you 2 ways that you can achieve this with. Custom animations (not 100% sure but can be possible i think) or making your own weapon and/or shooting system.
  13. Fist

    [Question]

    Just make a login system on your own server with mysql and with that you can make user control panel on your web. Maybe you can find on forum already ready ucp for web and you can base your login system on that in your server.
  14. I'm pretty sure there's a way to achieve this, but for that i think you should make a whole your own custom system for weapons/shooting unless you can make it with custom animations that recently was added.
  15. yeah i already managed to do it. I just used wrong angle that's why i couldn't get it but thanks anyway!
  16. I can't figure out on how i can add z calculations for getPointFromDistanceRotation function from useful functions in wiki. Function is like this function getPointFromDistanceRotation(x, y, dist, angle) local a = math.rad(90-angle) local dx = math.cos(a)*dist local dy = math.sin(a)*dist return x+dx, y+dy; end but i need to add a z value as well, so it calculates how far z should go from original position to distance and angle. Anyone can help?
  17. I don't understand what you mean. Can you describe better? If you mean how to get parameters from command when typing /command 1 2 3 4 and so on, you need to use event handler "addCommandHandler" and therefore you'll be able to get parameters for that specified command you want.
  18. try this? local policeVehicles = { {597, 1531.6806640625, -1668.15234375, 13.3828125}, } local police = "Police" addEventHandler("onResourceStart",resourceRoot,function() for _, v in ipairs(policeVehicles) do local veh = createVehicle(v[1],v[2],v[3],v[4],0,0,v[5]) setElementData(veh,"carFaction",police) end end) function vh ( player, seat ) if seat == 0 then if getElementData(source,"carFaction") == police and getElementData(player,"Faction" ~= police then cancelEvent() outputChatBox ( "#ffff00your are not in police department faction", player,240,155,15,true) end end end addEventHandler ( "onVehicleStartEnter", root, vh )
  19. You can't compare programming to being Administrator or Moderator or any kind of that stuff from gaming community. That's literally whole new category of work. That literally takes almost 0 effort and time comparing to programming. That's why people do it for free, not asking anything else in return than other that status. By judging off of these requirements what you've put on. I can say with ease, that you trying to milk someone without anything in return. You basically ask someone to make a project for you without giving anything in return. As people said above, don't expect to find anyone.
  20. This is insane! You definitely should improve animations and models, but excluding that. This looks really well made. Good job! Hopefully you won't stop working on it and actually finish it, something like this can actually help a lot of new type gamemodes.
  21. Thanks for reminding me! Maybe some will contribute to it as well.
  22. Hello there folks! As maybe some of you might know that i created pubg gamemode like half a year ago and it pretty much didn't work out. So i sold it, and it apparently got leaked several times on brazilian forums, which is a bit of sad thing but it's all ok. Because of this situation i decided to release it from my side as well 'cause why not. As i believe here isn't any pubg related gamemode released, so i might be as well first. Right? Gamemode has language system as well, so you can add as many languages to server as you want. Alright, will stop talking. I'll add here few pictures of the gamemode which were taken right when i finished working on it. So those images are pretty old. p.s keep in mind, that this gamemode has few flaws but if you fix them and add few things to it. It can be really strong start for a really good damn server. So good luck to any of you who will put time into it! edit: forgot to put a link here it is: https://github.com/rivor/pubg-mta
  23. I'm wondering how did you calculate that it sticks near to wall that's been placed.
×
×
  • Create New...