Jump to content

Storm-Hanma

Members
  • Posts

    677
  • Joined

  • Last visited

  • Days Won

    7

Posts posted by Storm-Hanma

  1. because your meta.xml have errors try to remove the type of gamemode !

            <meta>
            <info author="HugoAlmeida" type="gamemode" name="O meu humilde servidor" description="Prepara-te, Bill Gates! Eu venho aí!" />
           <script src="client.lua" type="client" />
            <script src="ficheiro.lua" />
            <file src="reeet.mp3" />
        </meta>

    idk why you save this has script.lua change the name for this file make it has clients.lua or servers..lua or something else and define it has server or client using type function

    type="client" /> or  "server" />

     <script src="script.lua" />

    for example see my meta.xml  which is working well

    <meta>
        <info type="map" version="1.0.1" />
        <map src="clup2.map" dimension="0" />
         <file src="music.mp3" />
        <script src="client.lua" type="client" /> 
    </meta>

        

  2. You need to be careful  when you imitate other servers resources don't ever post about other server resources and how to do that and imitate is not a wrong idea thing is 

    Instead of asking you have to do on your own then pass your code here in scripting section for errors then someone gonna help without your efforts in scripting none will help you ! Another way to get resource is paying real money many work here for money all the resource you want can be provided through money ! Hope you got me 

  3. Hi all today i want to sell my anti-cheat system which will helpful for some cheaters in server who loves to be pro by using cheats engines ! when ever some one use below cheats they will be get ban instantly !

    features :

    * NO autoclicks allowance in server!

    * NO macros allowance in server !

    * block mouse wheel fire !

    *Block jitter clicking !

    * spy only fire controls !

    settings will be available so you can set how you want optional.

    video to check 

    https://www.youtube.com/watch?v=IPUVONVxAIk

    Cost is - 7$ payment will be paypal .

    optional payments for local buyers who belongs to INDIA  & RUSSIA !

  4. you can do it by using team function or acl function for vips ,then for weapons or vehicle like rhino,minguns etc.. use set timer make sure you know basics of timing

    for example look up for this code below i made this hydra veh  for my shop system were player can buy hydra for money and use it for only 5 min !

    you can do same with weapon also by using give weapon function & set timer !

    visit here you can get all ideas from here https://wiki.multitheftauto.com/wiki/Main_Page

    addEvent ("Hydra - 2m$ for 5 min",true) 
    addEventHandler ("Hydra - 2m$ for 5 min",root,
    function ( ) 
    if getPlayerMoney ( source ) >  2000000 then    
    takePlayerMoney (source, 2000000)
    setElementHealth (source,200) 
    local x,y,z = getElementPosition (source) --The source is the player that triggered the event
    local vehicle = createVehicle (520,x+3,y+3,z+1) -- I'll just spawn a hydra or whatever
    local minutes = 5
    local milisec = minutes * 60000 --Just passing minutes to miliseconds.
    setTimer (function()
      destroyElement (vehicle)
      outputChatBox ("[Server]:  5 min is up buy again and have fun" ,source,0,255,255,true)
      
    end,milisec,1)
    else
    outputChatBox ("[Server]:  You dont have enough money to spawn hydra !" ,source,0,255,0,true) 
    end
    end )

     

    • Like 1
×
×
  • Create New...