Jump to content

xTravax

Members
  • Posts

    665
  • Joined

  • Last visited

Everything posted by xTravax

  1. In my Server i got real cars i mean mods skin mods weapon mods car mods tuning mods and that and when some players join they download it and when they reconnect they got again to download....WHY? How i can FIX THAT??PLS Help ME!!
  2. Hello,I need autoteam which will work if its possible can it by itself make teams and after i put people in then reconnect should work? i would it look like this Server Owners #FF0000 Admins #0000FF Moderators #00FF00 Members #FFF00A V.I.P #FF9900 thanks
  3. server does not lag i can show you give me recorder and i will record and proove that it doesnt lagg atleast if you have bad host my hos is og-servers.net
  4. i will say what he meaned i deleted killmessage and added deathlist so i refreshed and then i could start gamemodes and i had to give it back somehow i fixed it but it is double you stop killmessages but you can still see it on left side pls fix it mega ja sam hrvat
  5. so here's what ou need to add in lua file --Script by LR function onResourceStart() dfk1 = engineLoadTXD ( "textures/vgncarshade1.txd" ) engineImportTXD ( dfk1, 3458 ) --Road end addEventHandler("onClientResourceStart", getResourceRootElement(getThisResource()), onResourceStart) and here's what you need to add in meta.xml <meta> <info type="script" name="New race textures" author="diegofkda" version="1.0.0" /> <script src="script.lua" type="client" /> <file src="TEXTURES/vgncarshade1.txd" /> </meta> In this case lua is called script.lua Hope you understand NOTE! if you want to add more copy it and then change frp, dfk1 to df2 and then just change it however you want and change name BIG NOTE!To script work make folder called TEXTURES in folder where is lua and meta and put file in in this case file is "vgncarshade1.txd"
  6. i have problem with infernuspanel when i add and edit everything in meta and lua file it dont want to start infernus panel NOTE this is original meta and lua without adding anything <meta> <info author='Skill.eXe' version='1' name='Infernuspanel' description='Infernuspanel ;-)' type='script' /> <script src='panel_c.lua' type='client' /> <file src="infimod1/infernus.txd" /> <file src="infimod1/infernus.dff" /> <file src="infimod2/infernus.txd" /> <file src="infimod2/infernus.dff" /> <file src="infimod3/infernus.txd" /> <file src="infimod3/infernus.dff" /> <file src="infimod4/infernus.txd" /> <file src="infimod4/infernus.dff" /> <file src="infimod5/infernus.txd" /> <file src="infimod5/infernus.dff" /> </meta> heres script --[[ |-------------------------------------------| |------------ by Skill.eXe -----------------| |-------------------------------------------| |-------------------------------------------| |--Change the Name of the Infernus-mod´s----| |-------------------------------------------| |-------------------------------------------| |----------------SETTINGS-------------------| |-------------------------------------------| --]] infernusmod1 = "Infernus 1" infernusmod2 = "Striped Infernus" infernusmod3 = "Infernus 3" infernusmod4 = "Chuckles Infernus" infernusmod5 = "Classic Infernus" --[[ |-------------------------------------------------------------------------------------------------------------------| |------------------Change the infernus.dff and infernus.txd to change the mod---------------------------------------| |------------------Just Change the words in the " ", to change the Text of the Buttons------------------------------| |-------------------------------------------------------------------------------------------------------------------| |-------------------------------------------------------------------------------------------------------------------| --]] InfernusGui = {} InfernusGui["window"] = guiCreateWindow(518,92,328,520,"",false) InfernusGui["btnclose"] = guiCreateButton(291,26,28,28,"X",false,InfernusGui["window"]) addEventHandler ( "onClientGUIClick", InfernusGui["btnclose"], function ( btn, state ) if state == "up" then guiSetVisible(InfernusGui["window"], false) showCursor(false) end end, false ) InfernusGui["btn1"] = guiCreateButton(63,77,212,44,""..infernusmod1.."",false,InfernusGui["window"]) addEventHandler ( "onClientGUIClick", InfernusGui["btn1"], function (btn, state) if state == "up" then outputChatBox(""..infernusmod1.." loaded", 0, 255, 0) InfiTexture = engineLoadTXD ( "infimod1/infernus.txd" ) engineImportTXD ( InfiTexture, 411 ) InfiModel = engineLoadDFF ( "infimod1/infernus.dff", 411 ) engineReplaceModel ( InfiModel, 411 ) guiSetVisible(InfernusGui["window"], false) showCursor(false) end end, false ) InfernusGui["btn2"] = guiCreateButton(63,144,212,44,""..infernusmod2.."",false,InfernusGui["window"]) addEventHandler ( "onClientGUIClick", InfernusGui["btn2"], function (btn, state) if state == "up" then outputChatBox(""..infernusmod2.." loaded", 0, 255, 0) InfiTexture = engineLoadTXD ( "infimod2/infernus.txd" ) engineImportTXD ( InfiTexture, 411 ) InfiModel = engineLoadDFF ( "infimod2/infernus.dff", 411 ) engineReplaceModel ( InfiModel, 411 ) guiSetVisible(InfernusGui["window"], false) showCursor(false) end end, false ) InfernusGui["btn3"] = guiCreateButton(63,210,212,44,""..infernusmod3.."",false,InfernusGui["window"]) addEventHandler ( "onClientGUIClick", InfernusGui["btn3"], function (btn, state) if state == "up" then outputChatBox(""..infernusmod3.." loaded", 0, 255, 0) InfiTexture = engineLoadTXD ( "infimod3/infernus.txd" ) engineImportTXD ( InfiTexture, 411 ) InfiModel = engineLoadDFF ( "infimod3/infernus.dff", 411 ) engineReplaceModel ( InfiModel, 411 ) guiSetVisible(InfernusGui["window"], false) showCursor(false) end end, false ) InfernusGui["btn4"] = guiCreateButton(63,272,212,44,""..infernusmod4.."",false,InfernusGui["window"]) addEventHandler ( "onClientGUIClick", InfernusGui["btn4"], function (btn, state) if state == "up" then outputChatBox(""..infernusmod4.." loaded", 0, 255, 0) InfiTexture = engineLoadTXD ( "infimod4/infernus.txd" ) engineImportTXD ( InfiTexture, 411 ) InfiModel = engineLoadDFF ( "infimod4/infernus.dff", 411 ) engineReplaceModel ( InfiModel, 411 ) guiSetVisible(InfernusGui["window"], false) showCursor(false) end end, false ) InfernusGui["btn5"] = guiCreateButton(63,334,212,44,""..infernusmod5.."",false,InfernusGui["window"]) addEventHandler ( "onClientGUIClick", InfernusGui["btn5"], function (btn, state) if state == "up" then outputChatBox(""..infernusmod5.." loaded", 0, 255, 0) InfiTexture = engineLoadTXD ( "Standartinfi/infernus.txd" ) engineImportTXD ( InfiTexture, 411 ) InfiModel = engineLoadDFF ( "Standartinfi/infernus.dff", 411 ) engineReplaceModel ( InfiModel, 411 ) guiSetVisible(InfernusGui["window"], false) showCursor(false) end end, false ) guiSetVisible(InfernusGui["window"], false) function show_window () local IsWindowVisible = guiGetVisible(InfernusGui["window"]) if (IsWindowVisible == true) then guiSetVisible(InfernusGui["window"], false) showCursor(false) end if (IsWindowVisible == false) then guiSetVisible(InfernusGui["window"], true) showCursor(true) end end bindKey("i", "down", show_window) i actually edited everything position and everything but still it crashes
  7. <meta> <script type="server" src="script.lua"/> </meta> i asked two friends scripters and they said its good and it worked in my previous testing server lol with this meta
  8. Hello Guys! I need Help,i found EngineImportTXD on wiki so,i done it and i replace euros.dff and euros.txd with turismo and ofcourse i changed id of car so when i changed it it was all good.It didn't worked in my Online server,But It worked in my local server !? so i tried just to put script how it was but still didn't work (Remember i got code from wiki.multitheftauto.com) so please fix it here it is outputChatBox ( "> replacing the euros vehicle" ) txd = engineLoadTXD ( "data/euros.txd" ) engineImportTXD ( txd, 587 ) dff = engineLoadDFF ( "data/euros.dff", 587 ) engineReplaceModel ( dff, 587 )
  9. Hello People!I want to show you my script which makes car always change color(0.1 sec) i wrote popular cuz its on some maps and i just want to bring you this my first script and btw it's server in side of script you can change it WARNING! Don't use it if you have slow PC Don't use it if you download something(like games) Don't use it if you upload something So only if you clean. Here's Link! http://www.mediafire.com/?t31meul6e1clucb
  10. xTravax

    Wiki

    ovo je najbolji i sa najvise downloads od svih resursa na commuintyu ali meni ne radi koji gamemode dau ucitam kako da ih nađem?pomozitee https://community.multitheftauto.com/index.php?p= ... ils&id=347
  11. xTravax

    Dobrodosli

    ja sam se vratio ovaj ja sam sad script editor popravljam skriptove i uredjujem ih lol imam svoj klan treba mi jos mapa i treba pomoc oko foruma kupio sam forum na iPagu
  12. Hello,here is LR//Head Owner,In my server i write /push Gustavo and it doesn't work but,When i write /push Gustavo Gustavo it pushes me.So check it please.
  13. xTravax

    toolbox problem

    U uputama pise da stavim liniju ispod map editor neku liniju object name toolbox i to i radi dobro ali nekad mi se zbrcka loop i nikad ne radi undo
  14. Uhm now i maked my first script
  15. I can be your partner i can found a lot of maps resources scripts,everything.And i have my test server and admin skill for 3 years.
  16. Hey,i need script for automatically car colour set. I want that admins always get black car colour moderators get red colour super moderators get blue colour and members get yellow colour.i asked this because other server have that On race gamemode
  17. xTravax

    toolbox problem

    A kako je rifel postao moderator?
  18. xTravax

    Dobrodosli

    meni treba pomoc,nisam skuzio kako napraviti komande i kako teleport komandu napravit
  19. xTravax

    toolbox problem

    Aha,hvala a kako postati moderator u neo playgrounds?ja vam mogu ono napraviti mape za freeroam i to,ja sam mapper i ucim za scriptera.i vec sam posjedovao kupljeni server pa imam uskustva i igram mta 5 godina
  20. xTravax

    toolbox problem

    uvijek kada radim loop ,ode mi prema iza kada stisnem undo ne radi i reset ne radi,pomoc molim
  21. xTravax

    Wiki

    Meni odlicno ide prevodenje samo neke vrste rijeci neznam,ali ja prevedem vecinu a vi mi pomognete s rijecima koje neznam
  22. xTravax

    Dobrodosli

    Meni ide sada scriptanje,CapY trebam malu pomoc u scriptanju ako mozes me neke skriptove naucit plz
×
×
  • Create New...