Server

Page:1  

  • raduexz

    Hello. I have a question. I create a server but I don\'t fiind in list . How do I do to find ? The server it is create with old ssm aegis. Sorry four my English.

    ❤️ 0
  • DoS

    Hey you will need Zi;´s SSM Safewriting to be able to host a Crysis 1 Server. If you want to host a Crysis Wars Server, go to http://www.cryserv.de/en/ and grab the new server files as soon as they are released to the public (should be soon). Running a server with the old AEGIS won´t work, unless you play in LAN mode :) DoS

    ❤️ 0
  • Zi;

    Just like DoS told, using AEGIS or any other mod except SSM SafeWriting is totally useless and those mods are outdated anyway and don\'t provide half of stuff that SSM SafeWriting provides, also API is very simple, so creating fully working !kick command is just 3 to 6 lines of Lua (for example).

    ❤️ 0
  • LeQix Nick

    Killing scree duble kill how make this?

    ❤️ 0
  • Zi;

    Download http://crymp.net/forum/dl/KillStreaks-2.1.1.lua & put it to "ServerFolder/AdditionalScripts" folder.

    ❤️ 0
  • blackpink6691

    How to remove the weapons when moving to another location?

    ❤️ 0
  • Zi;

    You could simply create script: SafeWriting.FuncContainer:AddFunc(function(player) local arenaPos = { x = 123; y = 456; z = 789; --change these by yourself! go to arena, open console, write r_displayInfo 1, find your coordinates on map (X Y Z) }; local radius = 50; --lets say your arena has 50m radius local pos = player:GetWorldPos(); local dx,dy,dz=pos.x-arenaPos.x,pos.y-arenaPos.y,pos.z-arenaPos.z; local distance = math.sqrt(dx*dx+dy*dy+dz*dz); if distance < radius then local weapon = player.inventory:GetCurrentItem() if weapon and weapon.class~="Fists" then player.actor:DropItem(weapon.id); end end end,"UpdatePlayer")

    ❤️ 0
  • blackpink6691

    last question: How bind all settings? setcvar e_sun 0 (for example)

    ❤️ 0
  • Freebo

    If you don't want to put it all as permanent settings of your server in Settings/Settings.lua (line: "CustomSettingsAtLoad=") ...and you're asking about many cvars under one admin command usable any time you want to change all cvar settings at once - I've prepared it this way around 2 years ago for all of my servers as shown below. I almost never use it anymore, but maybe at least this simple idea can be helpful for you somehow for fast switches. Of course to place in ChatCommands/ChatCommands.lua file: ===== AddChatCommand("setlowgraph",function(self,player,msg,val) ForceSet("e_sun",tostring(0)); ForceSet("e_view_dist_ratio",tostring(15)); ForceSet("e_view_dist_ratio_vegetation",tostring(7)); Chat:SendToTarget(nil,player,"Graphics were set to low for better FPS"); end,{TEXT},{AdminOnly=true;},"Sets low graphics for better FPS"); ===== You can add as many cvars you want and prepare commands like "setlowgraph", "setmediumgraph", "sethigraph" or something like that.

    ❤️ 0
Page:1