Jump to content

Et-win

Members
  • Posts

    1,390
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Et-win

  1. You also can do it through the Admin Panel by tab Resources and pressing Manage ACL. Double-click on the group you want to edit (Under ACL) and then press Add Right, typ the right name (command.refreshall) and press OK, done.
  2. It's because you are using this: local block = xmlNodeGetAttribute( group, "name" ) To get: <anim nimi="Wank" block="PAULNMAC" anim="Wank_loop" /> <anim nimi="Dance " block="DANCING" anim="dance_loop" /> <anim nimi="Piss " block="PAULNMAC" anim="Piss_loop" /> <anim nimi="Sleep " block="CRACK" anim="crckidle2" /> <anim nimi="Sit" block="INT_OFFICE" anim="OFF_Sit_Idle_Loop" /> <anim nimi="Dance" block="DANCING" anim="dnce_M_d" /> <anim nimi="Sunbathing" block="BEACH" anim="SitnWait_loop_W" /> <anim nimi="Handstand" block="DAM_JUMP" anim="DAM_Dive_Loop" /> <anim nimi="Scratchballs" block="misc" anim="Scratchballs_01" /> <anim nimi="Hitchhiking Left" block="misc" anim="Hiker_Pose_L" /> <anim nimi="Hitchhiking Right" block="misc" anim="Hiker_Pose" /> <anim nimi="Bitchslap" block="misc" anim="bitchslap" /> <anim nimi="Strip" block="STRIP" anim="STR_A2B" /> <anim nimi="Strip2" block="STRIP" anim="STR_B2C" /> <anim nimi="Strip3" block="STRIP" anim="STR_C2" /> <anim nimi="HandsUp" block="ROB_BANK" anim="SHP_HandsUp_Scr" /> <anim nimi="Cower" block="ped" anim="DUCK_cower" /> <anim nimi="Walk Drunk" block="ped" anim="WALK_drunk" /> <anim nimi="Gunstand" block="ped" anim="gang_gunstand" /> <anim nimi="Spin" block="ped" anim="turn_180" /> <anim nimi="Unknown" block="ROB_BANK" anim="CAT_Safe_Open_O" /> <anim nimi="Surprised" block="ped" anim="facsurp" /> <anim nimi="Gum eat" block="ped" anim="facgum" /> <anim nimi="Fuku" block="RIOT" anim="RIOT_FUKU" /> <anim nimi="Swim" block="SWIM" anim="Swim_Breast" /> <anim nimi="ASD" block="SKATE" anim="skate_sprint" /> <anim nimi="ASD2" block="SKATE" anim="skate_run" /> There is no 'name' attribute, so it wasn't found. The other groups do have it, so they will be found.
  3. Maybe tell us which line sets stuff which in this case is 'false'.
  4. I see that you don't answer anymore. Next time if you can't even explain yourself, then be silent.
  5. Et-win

    Armor

    Why even helping him if he is constantly letting us do the job+Not his scripts?
  6. Et-win

    Armor

    Just test it........
  7. Et-win

    Compiler

    https://forum.multitheftauto.com/viewtopic.php?f ... t=compiler Use search function...
  8. Delete please: https://community.multitheftauto.com/ind ... ls&id=6298 https://community.multitheftauto.com/ind ... ls&id=6818 https://community.multitheftauto.com/ind ... ls&id=6822 https://community.multitheftauto.com/ind ... ls&id=6486 https://community.multitheftauto.com/ind ... ls&id=6819 https://community.multitheftauto.com/ind ... ls&id=8473 If not, please give a reason. DONE EDIT: Thank you Only https://community.multitheftauto.com/ind ... ls&id=8473 was not removed? EDIT2: Thanks again!
  9. if player == team then 'player' is not defined.
  10. Et-win

    Givemoney

    ...Srsly? You are back and you are just posting stuff to us and letting us fix it. You still didn't learn (anything) to script huh?
  11. function test(tCommand, tValue) if (tonumber(tValue) ~= nil) and (tonumber(tValue) > 0) and (tonumber(tValue) <= 3) then status = tonumber(tValue) end end addCommandHandler("logo", test) If you read wiki you would have know this.
  12. Use this to change the status: setTimer(function() if (status > 2) then status = 1 else status = status + 1 end end, time-in-milliseconds, 0) This will change your image every second you fill in. 'onClientRender' will be executed on every FRAME, that's why it changes way too fast. (Don't forget to remove "status = ..." out of the function)
  13. ...He wants to set a STRING to a VARIABLE. So "string" Has to become string So you can use it for string = stuff But as far as I know, not possible.
  14. ... I never said anything about something about or even something referring to this. -- Anyway, I posted a wrong code. I meant just use this: local team = getPlayerTeam(player) if (team ~= false) and (team ~= nil) then team = getTeamName(team) end if (team == false) or (team == nil) then team = "N/A" end As soon as a player gets placed into a team, it will draw the team above the nickname.
  15. And your current script is?..
  16. You don't even know or he defined the player.... So... what does it matters?
  17. Try: local team = getElementData(player, "team") if (team == false) or (team == nil) then team = "N/A" end
  18. local locations = { { 2351.9699707031, -1169.8599853516, 28.035507202148 }, --EastLosSantos } local markers = { -- rob markers for EastLosSantos house { 2341.66602, -1186.37573, 1027.97656, 0, 5 , locations[1]}, } Or edit it like this. You only need to edit your script for this.
  19. Why not using Serials? What if the player has no account? With a table.
  20. Probably you read over this because of the 'fight'. I think you need to prove that these resources are your , you should change the description of resources to ''DELETE'' . Ah, that can be true. I thought they could see the IP addresses and such. @Admin./Mod.: Check again
  21. Probably you read over this because of the 'fight'.
×
×
  • Create New...