Jump to content

Dookie

Members
  • Posts

    420
  • Joined

  • Last visited

  • Days Won

    11

Everything posted by Dookie

  1. Hi, i tried deleting serverstaat and restarting server, but doesnt work. thanks
  2. We are riding again! IP: 213.108.30.115:27960
  3. I think we are good with the current.
  4. u tried using set r_mode -1 , and then /vid_restart both in console?
  5. Btw, forgot to ask, any new cheats added on banlist?
  6. Will update my server tomorrow morning. thanks for the update!
  7. set g_XPSave "21" set g_XPSaveMaxAge_xp "12o" set g_XPSaveMaxAge "12o" set g_damageXP "0" set g_damageXPLevel "50" set g_maxXP "-1" set g_xpdecay "0" set g_xpdecayrate "0" set g_xpdecayfloor "0.0" Try using this.
  8. Helly can you edit my 1st post with this IP, thx
  9. AxE server new IP: 144.76.122.35:27980
  10. Dookie

    banner

    Hi, how is possible to make a banner which will be in the middle of the top screen and it would remain there all the time? Need it to announce a new server IP...So i need it there at the top and to stay all the time.
  11. Dookie

    Great to see

    Great to see that many servers started using silent anticheat, hope it will spread even more and that silent mod team will detect even more cheats. Thanks for it!
  12. Thanks, but i dont need it for me personally, but it might be helpful for other people, anyway thanks for answer and keep up the good work guys!
  13. Thanks for update, btw bout minimize, are going to see that for windows in next release? thx
  14. 3/what is the setting to can pick all the weapons for all the classes ? I think this is the answer: set g_mode 8 Descrp: g_mode Description This is a bitflag cvar that supports the following values: Parameters Type: bitmask 1 Players will spawn instantly 2 Each class receives adrenaline 4 No damage on players 8 Players can pick up any weapon on the ground (Removing this bitflag will force all players to respawn!)
  15. Hey thanks! Works, but only up to lvl 2, when i reach over xp 15, and die, it doesnt promote me to lvl 3, it stays on 2. Any ideas?
  16. Hi, ive got this in .lua file. ------------------------------------------------------------------------ AutoPromo - An Enemy Territory Auto Promoting Mod----------------------------------------------------------------------description = "AutoPromo"version = "1.1"------------------------------------------------------------------------ This script can be freely used and modified as long as the original-- authors are mentioned.-- Created by Perlo_0ung, edited by Dragon-- Adapted for silEnT mod 0.5.0 and higher------------------------------------------------------------------------ CONFIGURATION---------------------------------------------------------------------- lvl1xp = 1 -- XP needed for level 1lvl2xp = 5 -- XP needed for level 2lvl3xp = 15 -- XP needed for level 3 ------------------------------------------------------------------------ DO NOT EDIT BELOW THIS LINE-- UNLESS YOU KNOW WHAT YOU'RE DOING---------------------------------------------------------------------- function et_InitGame(levelTime,randomSeed,restart) local modname = string.format("%s v%s", description, version) et.G_Print(string.format("%s loaded\n", modname)) et.RegisterModname(modname)end -- TheSilencerPL - To make it better, faster and less aggravating-- for the game, store the XP locally and reuse itfunction et_ClientSpawn(clientNum, revived, teamChange, restoreHealth) local valXP = getXP(clientNum) if valXP >= lvl1xp and valXP < lvl2xp then setlevel(clientNum,1,lvl1xp) elseif valXP >= lvl2xp and valXP < lvl3xp then setlevel(clientNum,2,lvl2xp) elseif valXP >= lvl3xp and valXP < lvl4xp then setlevel(clientNum,3,lvl3xp) elseif valXP >= lvl4xp and valXP < lvl5xp then setlevel(clientNum,4,lvl4xp) elseif valXP >= lvl5xp then setlevel(clientNum,5,lvl5xp) endend function getXP(playerID) return et.gentity_get(playerID, "ps.persistant", 0) end function getlevel(playerID) return et.G_shrubbot_level(playerID)end function setlevel(playerID, newlevel, xp) local name = et.gentity_get(playerID,"pers.netname") if isBot(playerID) or noGuid(playerID) then return end if newlevel <= getlevel(playerID) then return end et.trap_SendServerCommand(-1,"bp \"^nCongratulations ^7"..name.."^n, ^nyou have ^nbeen ^npromoted ^nto ^na ^nlevel ^7"..newlevel.." ^nuser!\"") et.trap_SendConsoleCommand( et.EXEC_APPEND, "setlevel ".. playerID.." "..newlevel.."\n" ) et.trap_SendConsoleCommand( et.EXEC_APPEND, "readconfig\n" )end function noGuid(playerID) local userinfo = et.trap_GetUserinfo( playerID ) local guid = et.Info_ValueForKey( userinfo, "sil_guid" ) if guid == "NO_GUID" or guid == "unknown" then return true endend function isBot(playerID) if et.gentity_get(playerID,"ps.ping") == 0 then return true endend Any this in my server.cfg: // Lua APIset lua_modules "kspree.lua;autopromo.lua"set lua_allowedModules "" Anf ofc i uploaded lua file in my silent folder, but its still not working, when any of this XP's are reached nothing happends. Any ideas? thanks
×
×
  • Create New...