Jump to content

xeon17

Members
  • Posts

    1,903
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by xeon17

  1. I'll come tomorow to visit the server
  2. xeon17

    is this nice?

    Calm guys , i going create a other planet script..
  3. xeon17

    is this nice?

    Sounds nice , good luck with it
  4. xeon17

    Question

    Yeah KRZO i seen it was wrong and fixed , we posted in same second still Thanks , i going try it , and the script is client true ?
  5. xeon17

    Question

    function Cars ( ) txd = engineLoadTXD ( "data/euros.txd" ) engineImportTXD ( txd, 587 ) dff = engineLoadDFF ( "data/euros.dff", 587 ) engineReplaceModel ( dff, 587 ) addEventHandler ( "onClientResourceStart", getResourceRootElement ( ), Cars Will this work ? and the script is client ?
  6. xeon17

    Question

    I need to open function or some event handler ? thanks for the code i'll test it later
  7. xeon17

    Question

    What was the code to replace txd,dff of vehicles ? Thanks
  8. xeon17

    Big lag

    Hello i have big lag problems in MTA:SA , i has this problem never in last versions / patchs of MTA Everything lag , Server browser , Favorite servers , Settings my FPS fail to 0 . When i enter some servers i have lag too. http://pastebin.com/XwRrWp5m
  9. Is there any resource whitch alow players to buy/sell/lock their cars with GUI ? i seached on Community but no found so i ask here , is there any resource on community ? Thanks.
  10. function Spawn1(source) spawnPlayer(source, 1177.51917, -1324.05542, 14.07470,-90, math.random(1,50) , 0, 0, nil) outputChatBox("Welcome!", source, 0, 255, 0, false) end addEventHandler("onPlayerJoin", getRootElement(), Spawn1)
  11. xeon17

    LARP-RPG

    Give us more info ? what scripts your're using , something about server ? some screenshots lol ?
  12. xeon17

    [HELP]

    I'm sure the script isn't your , so much things are wrong in this script you should read on wiki how the fuctions work
  13. xeon17

    Hello.

    sounds hard but I'll try it , i understand it now thanks
  14. I seen that map and installed looks awesome on video & pictures on forum , but i never found it in game . Can you maybe tell me where it is ? whitch sitty ? sounds funny but..
  15. A great gamemode , can't wait to play ! Good luck with it
  16. xeon17

    Hello.

    Because i need this all simple stuff i allerdy did
  17. xeon17

    Hello.

    For everything , the 2 teams their deaths the time and the score. Yes i seen but i really no understand the wiki so i asked here if someone can tell me something better about it or give me an extample.
  18. xeon17

    Hello.

    Hello all , i wanna ask how i can create something like this TAPL said me i need to use DxDrawRectangle I readed the wiki and all but i still no understand how i can do it , i'm begginer at lua. a good extample can be usefull for me. Thanks
  19. Good Tutorial for begginers , will help much players. Good work.
  20. Hello MTA:SA Community. I'm wanna soon to buy a host , but whitch should i buy there are much hosting solutions. So i'm asking here the players whitch alerdy used a hosting solution. I seach for a profesionall hosting solution , server should be on 7/24 without lag and any problems.
  21. xeon17

    Moving Gate

    marker2 = createMarker(576,-2031.5,5.4000000953674,"cylinder",255,0,0,255) addEventHandler("onMarkerHit", marker2, function (player) setElementPosition(player,576.099609375,-2035,5.4000000953674) end )
  22. xeon17

    Bugs :x

    local function openMenu ( ply, commandName, ply2name ) local ply2 = getPlayerFromName(ply2name) local ply1 = getPlayerName(ply) setElementData(ply2, "requestedDueler", tostringply1) triggerClientEvent ( ply2,"requestDuel",ply2, ply1) end addCommandHandler ( "duel", openMenu ) addEventHandler( "onElementClicked", getRootElement(), openMenu ) function teleportPlayers ( ply1,ply2name ) ply2=getPlayerFromName(ply2name) setElementData( ply1, "duelingOrNot", true) setElementData( ply2, "duelingOrNot", true) setElementFrozen( ply1, true) setElementFrozen( ply2, true) setElementData(ply1, "timeTilStart", 5) dimToGo = math.random(500,1500) setElementPosition ( ply1, -387.36789, 2249.11597, 42.09375, true ) setElementDimension( ply1, dimToGo ) setElementPosition ( ply2, -376.50397, 2208.43066, 42.09375, true ) setElementDimension ( ply2, dimToGo ) setPlayerWeaponSlot ( ply1, 0 ) setPlayerWeaponSlot ( ply2, 0 ) countdownTimer= setTimer ( function() if(getElementData(ply1, "timeTilStart") < 1)then setElementFrozen( ply1, false) setElementFrozen( ply2, false) triggerClientEvent ( ply2,"roundStart",ply2) triggerClientEvent ( ply1,"roundStart",ply1) setPlayerWeaponSlot ( ply1, 0 ) setPlayerWeaponSlot ( ply2, 0 ) outputChatBox ( "Duel Started" ) setElementData(ply1, "timeTilStart", 5) killTimer(countdownTimer) else setPlayerWeaponSlot ( ply1, 0) setPlayerWeaponSlot ( ply2, 0) outputChatBox ( getElementData(ply1, "timeTilStart").." Until Duel Starts", ply1 ) outputChatBox ( getElementData(ply1, "timeTilStart").." Until Duel Starts", ply2 ) setElementData(ply1, "timeTilStart", getElementData(ply1, "timeTilStart")-1) end end, 1000, 0 ) addEventHandler ( "onPlayerWasted", getRootElement(), function() if(getElementData( source, "duelingOrNot"))then setElementData( ply1, "duelingOrNot", false) setElementData( ply2, "duelingOrNot", false) triggerClientEvent ( ply2,"roundEnd",ply2) triggerClientEvent ( ply1,"roundEnd",ply1) killPed(ply1) killPed(ply2) end end ) end addEvent( "teleportPlayers", true ) addEventHandler( "teleportPlayers", root, teleportPlayers ) [2014-02-08 18:58:51] WARNING: DUEL\server.lua:2: Bad argument @ 'getPlayerFromName' [2014-02-08 18:58:51] WARNING: DUEL\server.lua:5: Bad argument @ 'setElementData' [Expected element at argument 1, got boolean] [2014-02-08 18:58:51] WARNING: DUEL\server.lua:6: Bad argument @ 'triggerClientEvent' [Expected string at argument 1, got boolean] [2014-02-08 18:58:56] start: Requested by EufraT [2014-02-08 18:59:30] WARNING: DUEL\server.lua:2: Bad argument @ 'getPlayerFromName' [2014-02-08 18:59:30] WARNING: DUEL\server.lua:5: Bad argument @ 'setElementData' [Expected element at argument 1, got boolean] [2014-02-08 18:59:30] WARNING: DUEL\server.lua:6: Bad argument @ 'triggerClientEvent' [Expected string at argument 1, got boolean] [2014-02-08 18:59:32] WARNING: DUEL\server.lua:5: Bad argument @ 'setElementData' [Expected element at argument 1, got boolean] [2014-02-08 18:59:32] WARNING: DUEL\server.lua:6: Bad argument @ 'triggerClientEvent' [Expected string at argument 1, got boolean]
  23. xeon17

    Bug

    Ty dude , you're pro scripter
×
×
  • Create New...