Jump to content

Dzsipszi

Members
  • Posts

    59
  • Joined

  • Last visited

Everything posted by Dzsipszi

  1. Milyen típusú szervered van ill. milyen gamemode-on fut jelenleg? Deathmatch, Play, Roleplay, DayZ ?
  2. Szia! Alapszinten van még a tudásom a LUA-val kapcsolatban, a gamemode ahogy elnézed csak azért ilyen amilyen mert lassan féléve készítem a szerverre. Scripteket készíteni pedig sajnos most nem áll módomban, mivel még rengeteg a teendő a szerverrel ne hari .
  3. Ezt örömmel hallom, ha vannak rp-s mapjaid. Gyere fel a megadott teamspeak szerverre és megbeszéljük a dolgokat.
  4. ServerHive.net Roleplay server Üdvözlet ismét! Hosszú gondolkodás után, úgy döntöttem, hogy a hosting után nevezem el a roleplay szerverem. A már ismert tervel ellentétben most Los Santos-ban folytatodik az élet, amit kicsit megfűszereztünk pár újdonsággal. Mondhatjuk úgy is, hogy ez egy hibrid szerver, ami annyit takar, hogy fele roleplay míg a másik fele fun módon stagnál. Ez abból a szempontból jó a játékosok számára, ha például nem rajongsz annyira a roleplay szerverekért, a fun részét mégis érdemes kipróbáli, én legalábbis ajánlom mindenkinek . Gamemode állapota Roleplay: -Admin-rendszer: 100% -Bank-rendszer: 100% -Gépjármű-rendszer: 100% -Chat-rendszer: 100% -Frakció-rendszer: 100% -Benzin-rendszer: 100% -Grafikai-motor: 100% -Kinézet-Rendszer: 100% -Inventory-Rendszer: 100% -Munka-Rendszer: 100% -Regisztráció-Belépés: 100% -Realizmus-Rendszer: 100% -Bolt-Rendszer: 95% -Ház-Rendszer: 50% (Bugol) -Fejlődési-rendszer: 0% Fun: -CashBox: 100% -Eventek: 0% -Verseny-Rendszer: 0% Hálás köszönetem csiguusz-nak a rengeteg segítségért! Elérhetőségünk: ts3.serverhive.net Alsó szobák között: ServerHive.net Roleplay Jelszó: gta1 Köszi, hogy elolvastad
  5. No problem somebody already working on it
  6. Hi all! I request a race-system to my rpg server. Here is the steps: 1. Every 30 minutes the script make a global outputChatBox for all player with this message: ----------------Illegal-Race-Begins---------------- ----Start at: XY Street---Reward: XY HUF.------ ------------------------------------------------------ 2. The script after the global output makes a cylinder in XY Street 3. If a player hit the cylinder a gui appears with a window (text: Race register) and a button: (Register). 4. If they click on Register then take money from them (100.000$) 5. After they registering then the script make a temporary team name : Racers and take the registered players to this team. 6. After the outputchatbox they have 5 minutes to reach the registering cylinder or the cyl. is destroyed. 7. If a player registered and in the cylinder then start counting on the screen but only for this "Racers" team. 8. Then make the checkpoints and the finish. 9. If the first 3 player reach the finish then output, and give them a huge money (500.000$) --------Illegal--Race--Finish------- ----First: XY Player----------------- --------------------------------------- --------Illegal--Race--Finish-------- ---Second: XY Player---------------- ---------------------------------------- If anybody have free time please contact me in pm
  7. Good scripter, accepted my job and complete it 100% thank your Renk0n!
  8. I re-download the file and added to modules. The problem still.
  9. Every time i wanna load mysql i get back this error: [19:38:22] MODULE: Unable to find modules/mta_mysql.so (libmysqlclient.so.15: wr ong ELF class: ELFCLASS64)!
  10. What is this? ERROR: Server triggered clientside event 'showBuyCar', but event is not added clientside If the car don't have owner then showBuyCar.... but the buy panel don't pop up. Script: function enterVehicle ( thePlayer, seat, jacked ) local playercar = getPedOccupiedVehicle ( thePlayer ) if ( seat == 0 ) then if ( getElementData ( playercar, "owner" ) ~= "Nobody" ) then if ( getElementData ( playercar, "owner" ) == getPlayerName ( thePlayer ) ) then outputChatBox ( "(( Ennek a járműnek a tulajdonosa: "..getElementData ( playercar, "owner" )..". ))", source, 185, 86, 185 ) else if getVehicleEngineState ( playercar ) then setVehicleEngineState ( playercar, false ) else setVehicleEngineState ( playercar, false ) end end else local price = getElementData ( playercar, "price" ) triggerClientEvent ( thePlayer, "showBuyCar", source, price ) toggleAllControls ( thePlayer, false, true, false ) return true end end end addEventHandler ( "onVehicleEnter", getRootElement(), enterVehicle )
  11. Dzsipszi

    Decode

    I'm not joking and thank you the link!
  12. Dzsipszi

    Decode

    What i need to do with cache attribute in 'meta.xml' ?
  13. Dzsipszi

    Decode

    Amm... can somebody help me ? If somebody connecting to my server all of the resources are downloaded and can be readed. How do i make it like un-readable? Like: --reloadű sounűűds funűűctiűűon mgűReload(soűundPath, x,űűy,z) local soundű = plűaySűound3D(souűűűndPath, x,űűy,z) seűűtSounűűdMaxDistance(űsound, disűűtance) űű űűű űű ű local clipinSoűund = playűűSound3D("űsoűűunds/reload/mg_cűlipin.waűv", x,yű,z) setTiműer(function() local relSűűound = playűSound3D(ű"sounds/reload/mg_clipűin.wav", x,y,z) end, 1ű250, 1) end
  14. Dzsipszi

    Help

    addEventHandler("onVehicleExplode", getRootElement(), cancelEvent) ?
  15. Dzsipszi

    Help

    I want damageable cars but prevent from get fire and explode.
  16. Dzsipszi

    Help

    Help! I want a script that prevent cars from explode.
  17. Not working... but i solved the problem. thank you all!
  18. local owner = xmlNodeGetAttribute (v,"owner")
  19. Nope I try something like this, but i always failed | Line:6 fail function toggleVehicleEngine(source) local vehicle = getPedOccupiedVehicle(source) if vehicle then local control = getVehicleController(vehicle) if control == source then if player own the car then local state = getVehicleEngineState(vehicle) if state == false then setVehicleEngineState(vehicle, true) setElementData(vehicle, "vehicle.engine", 1) else setVehicleEngineState(vehicle, false) setElementData(vehicle, "vehicle.engine", 0) end else outputChatBox("NO KEY.", source, 255, 0, 0, false) end end end end bindKey ( "j", "down", toggleVehicleEngine )
  20. No, i wanna start the engine if i am the car owner, else the engine don't start.
  21. Hello! I need some help. I wanna know how to make a bind system to this function. function enterVehicle ( source, seat, jacked ) local playercar = getPedOccupiedVehicle ( source ) if(seat == 0) then if (getElementData ( playercar, "owner" )) then if(getElementData ( playercar, "owner" ) ~= "Nobody" ) then if(getElementData ( playercar, "owner" ) == getPlayerName ( source )) then outputChatBox ("(( Ennek a járműnek a tulajdonosa: "..getElementData ( playercar, "owner" )..". ))",source, 185,86,185 ) end else local price = getElementData ( playercar, "price" ) triggerClientEvent ( source, "showBuyCar", source, price) toggleAllControls ( source, false, true, false ) return true end end end end addEventHandler ( "onVehicleEnter", getRootElement(), enterVehicle ) bindKey -> J -> setengineState 1 if the car owner controll the car?
×
×
  • Create New...