Jump to content

c12kta

Members
  • Posts

    25
  • Joined

  • Last visited

Everything posted by c12kta

  1. hey someone can help me whats wrong on this script ? i use private message for F3 buttons , fader.luac as clientside and client.luac as client side too , and then show on game but still cant get private message , and then i change fader.luac as serverside but doesnt make changes still same problm how i can fix it?? this error when i put client.luac and fader.luac as Client side
  2. hey someone who can make me script for Top Murder , top zombie killer , top rich player when show on custom scoreboard and custom hotkey on DayZ game mode , you can make for me for compiled script it doesnt matter
  3. a problem on my DayZ server caused cant drop any items on vehicle, see the errors
  4. c12kta

    How i can?

    hi , i have many question but i wont post as multiple threads its to inconvenient , then i would make it in same thread How i can enable VIP system on DayZ gamemode? or using resources? who have resources or making one for me How i can add Custom Vehicle like Mesa Turismo comet on DayZ gamemodes? i have to add custom variable to add custom cars like comet mus add cometGamePlayvariables , and then how i can make it how i can make a safezone area with green area on map? how i can make a custom location like safezone for playing music on radius xxx , and how i can make list of music ?? sorry for bad english and many many many question here , but i hope available person who helped me Thanks
  5. hi anyone can help me for fixing my problems ... a while ago my friend accidentally spawn banshee from admin panel (DayZ server) then all vehicle wont spawn , and now my server have no vehicle there , well i know there should not be spawn vehicle from admin panel but my friends inadvertent , so someone there can fix it without replacing internal.db with new one?? or any resources for vehicle system on DayZ?? thanks
  6. i've open that script and i cant find the variable to add loot position/coordinate , then i find it on editor_server.lua it has many coordinate like residential item , army item etc . then if i add cordinate to it , it would be?? i will try it soon
  7. thanks for all answer , i think it maybe too many same function of "myGate1" then i change it to "myGate2,myGate3..." then it work , thanks very much
  8. im done fixing that problem and my base still can't load i dont know why , any base are same too , i dont know what caused my base won't start . there is no logs or warning informed me and my base still can't start
  9. there are so many compiled script and decompiled script too, but if i want to edit spawn loot items .. where i can edit ??? wich one the script is?
  10. if i fix that problem , is that fixing my base too?
  11. thanks sir , but i still dont know wich one i must delete , i have many resources with difference name , after my server got stopped 1 days ago because some technical problem , this problem come again and make me confused ... i cant load this Base again the same problem ... im so confused , my meta.xml is fine it indexed all neccessary files , but why my resources still can run , i try on local server (not an VPS,just home server with no mods or script) and it works but when i run on VPS why cant be ???
  12. anyone can help me , the same problem come again
  13. hi , anyone there can help me to add some loot spawn item locations where i can edit this ? wich one lua script i must edit??? , and if i done editing , can this run immediately without restarting server , thanks sorry for bad english
  14. sorry sir , the password "open / close" it just as an example, what I mean here is how to get the gate closed and opened with one same password, as an example, I want to open the gate to move with one command, / gatepassword and I want to close with the command / gatepassword as well Okay.. local gateOpen = false function createTheGate1 () myGate1 = createObject ( 987, 2500.7998046875, -1520.400390625, 22.700000762939, 270, 90, 90 ) myGate2 = createObject ( 987, 2500.7998046875, -1525.400390625, 22.700000762939, 270, 90, 90 ) myGate3 = createObject ( 987, 2500.7998046875, -1531.2001953125, 22.700000762939, 270, 90, 90 ) end addEventHandler ( "onResourceStart", getResourceRootElement ( getThisResource () ), createTheGate1 ) function openMyGate1 () if (gateOpen == false) then moveObject ( myGate1, 1500, 2500.7998046875, -1520.400390625, 19.5, 0, 0, 0 ) moveObject ( myGate2, 1500, 2500.7998046875, -1525.400390625, 17.700000762939, 0, 0, 0 ) moveObject ( myGate3, 1500, 2500.7998046875, -1531.2001953125, 16, 0, 0, 0 ) gateOpen = true else moveObject ( myGate1, 1500, 2500.7998046875, -1520.400390625, 22.700000762939, 0, 0, 0 ) moveObject ( myGate2, 1500, 2500.7998046875, -1525.400390625, 22.700000762939, 0, 0, 0 ) moveObject ( myGate3, 1500, 2500.7998046875, -1531.2001953125, 22.700000762939, 0, 0, 0 ) gateOpen = false end addCommandHandler("yourcommand",openMyGate1) That? I got This when i try to run this script , can you fix it??
  15. sorry sir , the password "open / close" it just as an example, what I mean here is how to get the gate closed and opened with one same password, as an example, I want to open the gate to move with one command, / gatepassword and I want to close with the command / gatepassword as well
  16. anyone here can make moving gate script but the password must same for opening and closing the gate , i have the script for moving gate but the password did not same , sorry for my bad english this my moving gate script function createTheGate1 () myGate1 = createObject ( 987, 2500.7998046875, -1520.400390625, 22.700000762939, 270, 90, 90 ) myGate2 = createObject ( 987, 2500.7998046875, -1525.400390625, 22.700000762939, 270, 90, 90 ) myGate3 = createObject ( 987, 2500.7998046875, -1531.2001953125, 22.700000762939, 270, 90, 90 ) end addEventHandler ( "onResourceStart", getResourceRootElement ( getThisResource () ), createTheGate1 ) function openMyGate1 () moveObject ( myGate1, 1500, 2500.7998046875, -1520.400390625, 19.5, 0, 0, 0 ) moveObject ( myGate2, 1500, 2500.7998046875, -1525.400390625, 17.700000762939, 0, 0, 0 ) moveObject ( myGate3, 1500, 2500.7998046875, -1531.2001953125, 16, 0, 0, 0 ) end addCommandHandler("open",openMyGate1) function movingMyGateBack1 () moveObject ( myGate1, 1500, 2500.7998046875, -1520.400390625, 22.700000762939, 0, 0, 0 ) moveObject ( myGate2, 1500, 2500.7998046875, -1525.400390625, 22.700000762939, 0, 0, 0 ) moveObject ( myGate3, 1500, 2500.7998046875, -1531.2001953125, 22.700000762939, 0, 0, 0 ) end addCommandHandler("close",movingMyGateBack1) thanks for helping
  17. to the point , my map cant be loaded on my server i dont know why but i have the pic that show the errors i hope anyone can help me
  18. I do not know the code / script which one should I show because I do not know where the script troubled because many scripts on my MTA DayZ Server
  19. Have you experienced this similar problems? my server can not use the right click after death, if for example I want to wear the item / weapon in the inventory the player must reconnect, think about what is wrong in this script in my server? where is the error from my script? maybe if anyone can help me, I would be very grateful to you
×
×
  • Create New...