Jump to content

Cadu12

Retired Staff
  • Posts

    827
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Cadu12

  1. Cadu12

    Gamemods

    If you know about Lua Professional, it will easy for you.
  2. As 50p said, only it is possible with texture. You can use these functions: triggerServerEvent triggerClientEvent dxCreateTexture engineApplyShaderToWorldTexture
  3. Try download latest resource: http://code.google.com/p/mtasa-resources/downloads/list
  4. You have to edit in "race" folder.
  5. Cadu12

    table thing.

    Too much wrong. Server-side: addEvent("clanMembers",true) function clanMembers() triggerClientEvent(source, "clanMembers", source, clanMembersFunc(source)) end addEventHandler("clanMembers", getRootElement(), clanMembers) function clanMembersFunc(source) local rowdata = {} local acc = getPlayerAccount(source) local team = getAccountData(acc, "team") local inumber = 0 for i, v in pairs(getAccounts()) do if (getAccountData(v, "team") == team) then inumber = inumber + 1 rowdata[inumber] = { account = getAccountData(v,"nick") or getAccountName(v), status = getAccountData(v, "teamstatus"), team = getAccountData(v, "team") } end end if (inumber ~= 0) then return rowdata end end Not tested yet. Next time, tell us your error in /debugscript 3
  6. onPlayerSpawn doesnt have any source in parameters. You should read wiki.
  7. They made own download system. You have to make your own download system. triggerClientEvent triggerServerEvent fileCreate fileDelete fileOpen fileRead loadstring
  8. Cadu12

    Necesito ayuda

    Speak English only. If you want speak other language, viewforum.php?f=117
  9. It is possible, Solidsnake. @On: You have to create textures: dxCreateTexture and then use engineApplyShaderToWorldTexture
  10. Cadu12

    I need help

    Post your script, and we can fix your problem.
  11. As I said, your achDamage is already set to 2, you need make it to back 0 or 1.
  12. Well, you already set to 2 on achDamage in event called onPlayerLogout.
  13. And please use MD5 for password, its good idea.
  14. theMarker = createMarker ( x, y, z, "cylinder", 2, 255, 255, 0, 170 ) addEventHandler ( "onMarkerHit", theMarker, function ( hitElement ) if getElementType ( hitElement ) ~= "player" then return end if isGuestAccount ( getPlayerAccount ( hitElement ) ) then if isObjectInACLGroup ( "user." .. getAccountName ( getPlayerAccount ( hitElement ) ), aclGetGroup ( "Police" ) ) then setElementPosition ( hitElement, x, y, z ) end end end ) Next, read the wiki.
  15. If you don't post your code, we can't help to fix your problem.
  16. function warpToLVStunt( source, commandName ) setElementPosition( source, 1432.017578125, 1473.7392578125, 10.8203125 ) end addCommandHandler( "lvstunt", warpToLVStunt )
  17. Then you can't, you can ask the owner of server to put it.
  18. https://wiki.multitheftauto.com/wiki/Ser ... our_server
  19. Cadu12

    Top ten

    Jaysds1, that's not problem, it will stop looping. On: Memory, what is your problem/error? We can't fix for you.
×
×
  • Create New...