Jump to content

sockz

Members
  • Posts

    94
  • Joined

  • Last visited

Everything posted by sockz

  1. sockz

    [Help] scripts codes

    I'm amazed you care so much, they can steal client scripts only, wow. And when you decompile them, it'll become half broken. Again you show interest in the most dumbest things.
  2. Canceling my server. I've used up 1/3 of my time I bought (10 days out of 30) because of waiting for responses in the tickets I submitted. Then I get a response I have to download a FPS software to edit files(when this should be possible via ucp) and wait like 7 days to get myself a database for the server. waste of time, 10 days thrown away because of nothing. I take my recommendation back.
  3. Notepad++ > CTRL F > search in files
  4. sockz

    please help me

    What were you thining when you used getElementPosition and then used that position with attachElements?
  5. How much would you pay? add my skype: xitozrogitox
  6. You can try by deleting the 'player' argument in line #1 or just post the full code, which you trigger with this.
  7. sockz

    Ped kill...

    can't you? https://wiki.multitheftauto.com/wiki/OnC ... tealthKill The staff's attitude towards me is incredible hostile, it sickens me.
  8. sockz

    Walking Styles

    setPedWalkingStyle was removed to due handful of bugs. However you can try your way with setPedAnimation and onClientKey like: function setmyWalk(button, press) if (press) then if button == 'w' then setPedAnimation ( source, "ped", "WOMAN_walknorm") outputDebugString(' wbutton pressed ') else setPedAnimation(source,false) outputDebugString(' wbutton released ') end end end addEventHandler("onClientKey", root, setmyWalk)
  9. @Orange, your server is also roleplay, isn't it? you bringing the "old times" back is highly unlikely. You're simply joining the new era. This new era is '2012', enjoy the new generation of scumbags. Also the flaming part is mostly because no one likes idiots or slow people, therefore, if you dont understand what this 'rude person' means, he'll become even more angry/irritated with you. No offence to anyone, but that's the truth. Here's another example, catchy words and phrases. Such as "giant hormone fest", you just lit the fire right there. And another one, and this is because it's true and I consider you an idiot and a fool for bringing it up. No one gives a flying fuck about their postcount. I can garantuee you that. It's just a stupid excuse for people like you to avoid being bashed for something stupid you said when someone brings it up.
  10. sockz

    Ped kill...

    function cancelpedkills(vPed) if getElementType ( vPed ) == "ped" then cancelEvent() end end addEventHandler("onClientPlayerStealthKill", localPlayer, cancelpedkills)
  11. viewtopic.php?f=108&t=45676 This gamemode includes that, but it includes mysql, you'll have to edit some of it.
  12. Then why would you include non-trolling posts?
  13. ^no guiCheckBoxGetSelected guiCheckBoxSetSelected
  14. replace the function in s_account.lua with this function attemptRegister(thePlayer, username, password) if ( username ~= "" and password ~= "" ) then local success, error = exports.sql:query_free("INSERT INTO `accounts` VALUES('', '".. tostring(username) .."', '".. md5( tostring( password ) ) .."', '".. getPlayerSerial(thePlayer) .."', '0','0')") if ( error ) then return outputDebugString( error ) else return outputChatBox("Successfully registered your account!", thePlayer, 100, 0, 100) end end end also if you dont know how to set it up, you wont get far with this gamemode, it's incomplete and buggy. Check this: viewtopic.php?f=108&t=45676
  15. I'm curious though, the element data wipes when you disconnect from the server, so how does this work?
  16. there's no freedom of speech here. Here's why:
  17. function autounban(player,cmd,targetPlayer) local tPlayer = getPlayerFromName(targetPlayer) if getElementData(tPlayer, "auto.unban") == false then setElementData(tPlayer, 'auto.unban', true) outputDebugString('data added') else setElementData(tPlayer, 'auto.unban', false) outputDebugString('data removed') end end addCommandHandler("pban", autounban)
  18. Check line 27 and 36.
  19. You can test by logging into my server. You can find more detailed info and ip on page #1. else you can click this: mtasa://64.31.10.156:22005
  20. why the mixed player arguments?
  21. and? what you wanna prove? that you know better than me?. Listen people don't come on internet to know how much you know , they come to get help. Yes mysql root doesn't have a password and it needs to be added by user and if user doesn't add then he can get hacked by someone so its a security issue.Its written on their website so stop making useless post. User should remember to change/set a password and he should also change username from "root" to something else as its not recommended. Everyone knows better than you do, you're completely clueless. The list you provided is not considered security flaws, just things you're recommended to do, else it'll become a security flaw as it's standard procedures. Here's one example why you shouldn't use xampp. Second: UniServer is the same shit as xampp but much much lighter AND it's twice as fast, as it's lighter and in general, just better than xampp. You're stupid to say otherwise. Though remember this: security flaws can be fixed, easily, but UniServer will still be better even when the flaws are fixed, as I said, twice as good actually.
  22. function Bank() setElementFrozen(localPlayer, true) outputChatBox("Hacking started! It will take 5 mins to hack the Bank!", 255, 255, 0) end addEvent("Bank", true) addEventHandler("Bank", root, Bank) function hacked() givePlayerMoney (localPlayer, 10000) setElementFrozen(localPlayer, false) setPlayerWantedLevel ( localPlayer, 3 ) setTimer ( hacked, 300000, 1 ) end addEvent("hacked", true) addEventHandler("hacked", root, hacked)
  23. function onLogin(source) outputChatBox("Hello!", source) end addEventHandler("onPlayerLogin", getRootElement(), onLogin)
×
×
  • Create New...