Jump to content

makavelii

Members
  • Posts

    49
  • Joined

  • Last visited

Everything posted by makavelii

  1. Okay, i will try that.. But how to make the server force download of the menu into etmain? Added into etmain on fastdl + etmain directory but doesnt work
  2. and how to force people downloading it into ETmain, I read somewhere about the .campaign thingy but not quite sure of how to use it. + I changed the global.menu but seems not to work :/
  3. Hey guys, I've recently tried to change the IN-Game menu for example add buttons such as other server connection, etc etc. But I don't know what to do so it replaces the current 'mod' menu.. Can someone help me? Thanks in advance.
  4. Hey, I have question about the autopromo lua. My level system on the server is 15,20,25.. <- levels for regular players and my friend edited for me the lua as I wasn't sure what to do.. Is this right? --------------------------------------------------------------------- -- 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 ---------------------------------------------------------------------- lvl15xp = 1000 -- XP needed for level 1 lvl20xp = 5000 -- XP needed for level 2 lvl25xp = 25000 -- 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 it function et_ClientSpawn(clientNum, revived, teamChange, restoreHealth) local valXP = getXP(clientNum) if valXP >= lvl15xp and valXP < lvl20xp then setlevel(clientNum,1,lvl15xp) elseif valXP >= lvl20xp and valXP < lvl25xp then setlevel(clientNum,2,lvl20xp) elseif valXP >= lvl25xp then setlevel(clientNum,5,lvl25xp) end end 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 end end function isBot(playerID) if et.gentity_get(playerID,"ps.ping") == 0 then return true end end Best regards.
  5. Solved, execd the objectivecycle.cfg and works. thanks all
  6. Hey, I have my game type set to 6 (map voting). Unfortunately it doesnt load any maps as there was no map rotation. Yesterday I've put a few maps in the rotation but it doesnt seem to work.. When I do nextmap and don't vote on any maps it still restarts the same.. my objective.cfg set d1 "set g_gametype 6 ; map goldrush ; set nextmap vstr d2" set d2 "set g_gametype 6 ; map purefrag ; set nextmap vstr d3" set d3 "set g_gametype 6 ; map te_valhalla ; set nextmap vstr d4" set d4 "set g_gametype 6 ; map goldendunk_a2 ; set nextmap vstr d5" set d5 "set g_gametype 6 ; map fun_beach_final_fv1 ; set nextmap vstr d6" set d6 "set g_gametype 6 ; map caen2 ; set nextmap vstr d7" set d7 "set g_gametype 6 ; map supplydepot3 ; set nextmap vstr d8" set d8 "set g_gametype 6 ; map SuperGoldrush_Final ; set nextmap vstr d9" set d9 "set g_gametype 6 ; map UJE_ambush_b2 ; set nextmap vstr d10" set d10 "set g_gametype 6 ; map UJE_2_towns_b2 ; set nextmap vstr d11" set d11 "set g_gametype 6 ; map italyfp2 ; set nextmap vstr d12" set d12 "set g_gametype 6 ; map venice_ne4 ; set nextmap vstr d13" set d13 "set g_gametype 6 ; map UJE_christmas_tank_2010 ; set nextmap vstr d14" set d14 "set g_gametype 6 ; map nfl_b2 ; set nextmap vstr d15" set d15 "set g_gametype 6 ; map italyfp2 ; set nextmap vstr d16" set d16 "set g_gametype 6 ; map oasis ; set nextmap vstr d17" set d17 "set g_gametype 6 ; map fueldump ; set nextmap vstr d18" set d18 "set g_gametype 6 ; map baserace_b3c ; set nextmap vstr d19" set d19 "set g_gametype 6 ; map mlb_egypt_fixed ; set nextmap vstr d20" set d20 "set g_gametype 6 ; map pirates ; set nextmap vstr d21" set d21 "set g_gametype 6 ; map railgun ; set nextmap vstr d22" set d22 "set g_gametype 6 ; map battery ; set nextmap vstr d23" set d23 "set g_gametype 6 ; map mml_minastirith_fp3 ; set nextmap vstr d24" set d24 "set g_gametype 6 ; map mlb_daybreak ; set nextmap vstr d25" set d25 "set g_gametype 6 ; mml_helmsdeep_b4 ; set nextmap vstr d1" vstr d1 Do I need to edit any other cfg so that it works? Thanks
  7. makavelii

    Vsays

    From what silencer told me i had around 170, where only 150 worked
  8. Okay, Unfortunately the disable falling damage still slows down when jumping from higher distances which unables to do TJ:/
  9. makavelii

    Jumping

    Is it possible to disable the thing when you fall that it slows you down? + how can you change the map time for example from 60 to 15minutes etc.
  10. makavelii

    Vsays

    i've sorted it out with the help of SIlencer. There was too many sounds had to delete some and they work fine
  11. Hey I was wondering if these commands are usable and if they will work. [command] command = tjmodeon exec = g_misc 231 ; g_mode 7 ; g_medicChargeTime 0 ; giba desc = ^7Turns on ^1TrickJump ^7settings. syntax = levels = 175 200 225 250 300 [command] command = tjmodeoff exec = g_misc 214 ; g_mode 0 ; g_medicChargeTime 10000 ; giba desc = ^7Turns off ^1TrickJump ^7settings. syntax = levels = 175 200 225 250 300
  12. Okay I'll check if 31 works, had 21 before didn't work, i've set it to 23 and didn't work. Have no Idea what the problem is.. But why do the levels disappear with the xp? + whats xpdecayfloor and damagexp? Yeah, I know I was just bored and really didn't know what to put in there:P sorry boss, i'll fix it right away so you don't slap me for insulting your work!
  13. makavelii

    XPSAVE

    Hey guys, I noticed some time ago and aswell as players have reported to me that the XP on the server doesn't save. Having all the cmds set accordingly to the wiki the xp disappers. It happens when someone new connects to server and then plays a round, next map is loaded and the XP is gone. After the second sometimes even third or fourth it starts to save, but not always. One of my members had this kind of problem with the levels. I had to set his levels around 10 times because everytime a new map was loaded his xp + lvl disappeared. Im wondering if this could be any of buggs in Silent or is there a mistake in my cfg? // silEnT mod - Sample server.cfg file // If you need help contact us on forums. http://mygamingtalk.com/ // Generic server cvars // //set dedicated 2 //set net_ip "localhost" //set net_port 27960 set sv_hostname *******" set server_motd0 "******] " set server_motd1 "*******" set server_motd2 "^^rWe Are Recruiting!" set server_motd3 "^1Enjoy your stay!" set server_motd4 "^5siLeNtMOD running!" set server_motd5 "" set sv_maxclients "" set g_password "" set sv_privateclients 0 set sv_privatepassword "" set sv_fullmsg "Server is full." set rconpassword "*****" set refereePassword "****" set sv_maxRate 45000 set sv_dl_maxRate 42000 set sv_wwwBaseURL"******" set sv_wwwDlDisconnected "1" set sv_wwwDownload "1" set sv_allowDownload "1" set sv_wwwFallbackURL "***** set sv_pure 1 set sv_minping 0 set sv_maxping 0 // silEnT mod supported cvars set g_antilag 1 set g_antiwarp 1 set g_maxWarp 4 set g_skipCorrection 1 set g_heavyWeaponRestriction 100 set g_altStopwatchMode 0 set g_autofireteams 1 set g_complaintlimit 6 set g_ipcomplaintlimit 3 set g_fastres 0 set g_friendlyFire 0 set g_disableComplaints 0 set g_minGameClients 0 set g_maxlives 0 set g_alliedmaxlives 0 set g_axismaxlives 0 set g_teamforcebalance 1 set g_noTeamSwitching 0 set g_doWarmup 0 set g_warmup 15 set match_latejoin "1" set match_minplayers 4 set match_mutespecs 0 set match_readypercent 100 set match_warmupDamage 50 set team_maxplayers 0 set g_speed 340 set g_gravity 650 set g_knockback 1000 set g_inactivity 280 set g_spectatorInactivity 0 set g_maxConnsPerIP 4 set shoutcastPassword "****" set g_spoofOptions 3 set g_maxNameChanges 3 set g_watermark "" set g_watermarkFadeAfter 0 set g_watermarkFadeTime 0 set g_inactivityOptions 3 set g_ettvFlags 3 set g_redlimbotime 3 set g_userAlliedRespawnTime 3 set g_userAxisRespawnTime 3 set g_bluelimbotime 3 // Votes set g_voting 0 set vote_limit 5 set vote_percent 50 set g_noVoteTime 0 set vote_allow_comp 1 set vote_allow_gametype 1 set vote_allow_kick 1 set vote_allow_map 1 set vote_allow_matchreset 1 set vote_allow_mutespecs 1 set vote_allow_nextmap 1 set vote_allow_pub 1 set vote_allow_referee 0 set vote_allow_shuffleteamsxp 1 set vote_allow_swapteams 1 set vote_allow_friendlyfire 1 set vote_allow_timelimit 0 set vote_allow_warmupdamage 1 set vote_allow_antilag 1 set vote_allow_balancedteams 1 set vote_allow_muting 1 set vote_allow_surrender 1 set vote_allow_nextcampaign 1 set vote_allow_restartcampaign 1 set vote_allow_poll 1 set vote_allow_maprestart 1 set vote_allow_shufflenorestart 1 set vote_allow_cointoss 1 // Logs set g_log "server.log" set g_cheatLog "cheat.log" set logfile 2 set g_logOptions 0 set g_logAdmin "admin.log" // XP Save configuration set g_XPSave 23 // Only stored XP set g_XPSaveMaxAge_xp "365d" // Stored XP and all rating values set g_XPSaveMaxAge "365d" set g_damageXP "5" set g_damageXPLevel "50" set g_maxXP "900000000" set g_xpdecay "0" set g_xpdecayrate "0" set g_xpdecayfloor "1" //set g_punkbuster 1 // Shrubbot and Database set g_dbDirectory "database" set g_dbUserMaxAge "90d" set g_minConnectLevel 0 // see documentation about tyranny enabled commands and flags set g_tyranny 1 set g_greetingPos 0 set g_warningOptions 0 set g_warningDecay 24 set g_maxWarnings 3 set g_autoTempBan 0 set g_autoTempBanTime 1800 set g_shuffle_rating 3 // // Censoring set g_censor "" set g_censorNames "" set g_censorNeil 0 set g_censorNeilNames 0 set g_censorPenalty 0 set g_censorMuteTime 60 set g_censorXP 5 // // Intermission set g_intermissionTime 30 set g_intermissionReadyPercent 79 // // Skill points needed for level set skill_soldier "20 30 50 100" set skill_medic "10 30 40 60" set skill_engineer "20 30 40 60" set skill_fieldops "20 35 50 60" set skill_covertops "20 50 90 140" set skill_battlesense "10 20 30 50" set skill_lightweapons "20 30 40 50" set g_serverInfo 1 set g_killRating 1 set g_playerRating 1 set g_playerRating_minplayers 8 set g_stats 0 // Custom configs set g_mapScriptDirectory "mapscripts" set g_campaignFile "" set g_mapConfigs "mapconfigs" set g_banners "banners.cfg" // Miscellanous set g_skills 4 set g_teamDamageRestriction 0 set g_minHits 6 set g_mg42 0 set g_goomba 0 set g_goombaFlags 0 set g_spinCorpse 0 set g_teamChangeKills 1 set g_poison 1 set g_poisonFlags 7 set g_slashKill 0 set g_spectator 0 set g_medics 0 set g_medicHealthRegen 0 set g_coverts 0 set g_truePing 0 set g_dropObj 0 set g_hitsounds 1 set g_playDead 1 set g_shove 80 set g_shoveNoZ 0 set g_dragCorpse 1 set g_classChange 0 set g_forceLimboHealth 1 set g_privateMessages 1 set g_packDistance 2 set g_dropHealth 4 set g_dropAmmo 4 set g_tossDistance 7 set g_fear 2000 set g_obituary 1 set g_throwableKnives 1 set g_maxKnives 5 set g_knifeChargeTime 800 set g_constructibleXPSharing 0 set g_asblock 0 set g_panzersVulnerable 0 set g_panzersSpeed 2500 set g_panzersGravity 0 set g_dyno 0 set g_canisterKick 0 set g_spreeOptions 1 set g_multikillTime 2500 set g_medicSelfhealTime 0 set g_maxPanzerSuicides -1 set g_panzerPackDistance 0 set g_maxSelfkills -1 set g_voteResultsMinLevel -1 set g_minCommandWaitTime 0 set g_noSkillUpgrades 0 set g_flushItems 1 set g_headshot 0 set g_instagibDamage 400 set g_staminaRecharge 1.0 set g_mineid 0 set g_landmineNotifyType 1 set g_misc 199 set g_mod 8 set g_ammoCabinetTime 10 000 set g_healthCabinetTime 10 000 set g_engineerChargeTime 10 000 set g_doubleJumpHeight 1.4 set g_spreeOptions 2751 set g_weapons 17663 set g_gametype 6 set g_adrendmgreduction 50 // // Weapon damages and radius settings set g_dmgKnife 50 set g_dmgSten 14 set g_dmgFG42 15 set g_dmgPistol 18 set g_dmgSMG 18 set g_dmgPPSh 19 set g_dmgMG42 18 set g_dmgMG 20 set g_dmgFG42Scope 30 set g_dmgInfRifle 34 set g_dmgSniper 50 set g_dmgFlamer 5 set g_dmgGrenade 250 set g_dmgGrenadeRadius 250 set g_dmgGLauncher 250 set g_dmgGLauncherRadius 250 set g_dmgLandmine 250 set g_dmgLandmineRadius 250 set g_dmgSatchel 250 set g_dmgSatchelRadius 250 set g_dmgPanzer 400 set g_dmgPanzerRadius 300 set g_dmgMortar 400 set g_dmgMortarRadius 400 set g_dmgDynamite 400 set g_dmgDynamiteRadius 400 set g_dmgAir 400 set g_dmgAirRadius 400 set g_dmgArty 400 set g_dmgArtyRadius 400 set g_dmg 0 set g_dmgHeadShotMin 50 set g_dmgHeadShotRatio 2.0 set g_dmgTMine 260 set g_knifeThrowDamage 50 set g_LTChargeTime 15000 set g_medicChargeTime 10000 set g_engineerchargetime 10000 set g_covertopChargeTime 10000 // // Team restrictions set team_maxMedics -1 set team_maxEngineers -1 set team_maxFieldOps -1 set team_maxCovertOps -1 set g_maxTeamLandmines 10 set g_maxTeamTripmines 3 set team_maxPanzers 1 set team_maxMortars 1 set team_maxFlamers 1 set team_maxMG42s 1 set team_maxGrenLaunchers 2 set g_dbMaxAliases 5 // // Friendly fire set g_reflectFriendlyFire 0 set g_reflectFFWeapons 31 set g_friendlyFireOpts 4 // // Flood protection set g_floodprotect 1 set g_floodthreshold 6 set g_floodWait 1000 set g_voiceChatsAllowed 4 // // Map voting set g_mapVoteFlags 13 set g_maxMapsVotedFor 30 set g_minMapAge 1 set g_resetXPMapCount 0 // // Omni-bots set omnibot_enable 1 set omnibot_path "" set g_bot_maxXP -1 set g_bot_minPlayers -1 set omnibot_flags 0 // // Fun wars //set g_sniperwar 0 //set g_panzerwar 0 //set g_riflewar 0 // // Country flags, You need to have GeoIP database installed to use this. set g_countryFlags 1 // set g_fixedphysics 0 set g_fixedphysicsfps 125 // // Lua API set lua_modules "" set lua_allowedModules "" exec objectivecycle.cfg set com_watchdog 60 set com_watchdog_cmd "exec objectivecycle.cfg" set g_silentac 1
  14. makavelii

    Vsays

    I've a problem... The menu works fine, but the sounds don't work at all from my new packs i"ve updated.. //////////////////////////////// // cool // //////////////////////////////// whiteamerica { sound/cool/WhiteAmerica.wav "^oWhite Americaaaaaaa!" } scatman { sound/cool/scatm.wav "^oIm a Scatmaaaaaaaaaaan!" } batman { sound/cool/batman.wav "^3Batmaaaaaan! ^rNanananan!" } blur { sound/cool/blur.wav "^4Wooooooohooooo!" } pussy { sound/cool/duke3.wav "^1WHAT A PUSSY!" } crybb { sound/cool/crybb.wav "^7I want my mommy!" } fart { sound/cool/farted.wav "^5Who the fuck farted!" } fyou { sound/cool/fyou.wav "^3Fuck you! Fuck you!" } gbye { sound/cool/gbye.wav "^3Gooodbyeeee My lover!" } ilesbian { sound/cool/ilesbian.wav "^3Im soo lesbian right now.." } lag { sound/cool/lag.wav "^rLag lag lag lag.." } loveyou { sound/cool/loveyou.wav "^1I love youuuuuuu" } nani { sound/cool/nani.wav "^3Nothiiing at alll!" } orgasma { sound/cool/orgasma.wav "^rUhhhhhhh!" } orgasmb { sound/cool/orgasmb.wav "^1Ohhhh.." } qsera { sound/cool/qsera.wav "^rQue Sera sera sera.." } thunder { sound/cool/thunder.wav "^3Thu nder!" } whosaid { sound/cool/whosaid.wav "^rWho the fuck said that!" } whoyou { sound/cool/whoyou.wav "^3Cmon now! Who do you think you areee.." } And then the quickmessageall QM_MENU_START( "wm_cool_alt" ) QM_MENU_ITEM( "1. ^oWhite Americaaaaaaa!", exec "voiceChat whiteamerica"; close wm_cool_alt, "1", 0 ) QM_MENU_ITEM( "2. ^rScatman!", exec "voiceChat scatman"; close wm_cool_alt, "2", 1 ) QM_MENU_ITEM( "3. ^rBatman", exec "voiceChat batman"; close wm_cool_alt, "3", 2 ) QM_MENU_ITEM( "4. ^3Blur", exec "voiceChat blur"; close wm_cool_alt, "4", 3 ) QM_MENU_ITEM( "5. ^rWhat a pussy!", exec "voiceChat pussy"; close wm_cool_alt, "5", 4 ) QM_MENU_ITEM( "6. ^3Crybb", exec "voiceChat crybb"; close wm_cool_alt, "6", 5 ) QM_MENU_ITEM( "7. ^ofart", exec "voiceChat fart"; close wm_cool_alt, "7", 6 ) QM_MENU_ITEM( "8. ^3Cool2", close wm_cool_alt; open wm_cool2_alt, "8", 7 ) QM_MENU_END QM_MENU_START( "wm_cool2_alt" ) QM_MENU_ITEM( "1. ^oFuck You", exec "voiceChat fyou"; close wm_cool2_alt, "1", 0 ) QM_MENU_ITEM( "2. ^rGoodBye", exec "voiceChat gbye"; close wm_cool2_alt, "2", 1 ) QM_MENU_ITEM( "3. ^rLesbian", exec "voiceChat ilesbian"; close wm_cool2_alt, "3", 2 ) QM_MENU_ITEM( "4. ^3Lag", exec "voiceChat lag"; close wm_cool2_alt, "4", 3 ) QM_MENU_ITEM( "5. ^rLove", exec "voiceChat loveyou"; close wm_cool2_alt, "5", 4 ) QM_MENU_ITEM( "6. ^3Orgasm1", exec "voiceChat orgasma"; close wm_cool2_alt, "6", 5 ) QM_MENU_ITEM( "7. ^oOrgasm2", exec "voiceChat orgasmb"; close wm_cool2_alt, "7", 6 ) QM_MENU_ITEM( "8. ^3Cool3", close wm_cool2_alt; open wm_cool3_alt, "8", 7 ) QM_MENU_END QM_MENU_START( "wm_cool3_alt" ) QM_MENU_ITEM( "1. ^oQue Sera!", exec "voiceChat qsera"; close wm_cool3_alt, "1", 0 ) QM_MENU_ITEM( "2. ^rThunder!", exec "voiceChat thunder"; close wm_cool3_alt, "2", 1 ) QM_MENU_ITEM( "3. ^rWho said", exec "voiceChat whosaid"; close wm_cool3_alt, "3", 2 ) QM_MENU_ITEM( "4. ^3Who You?", exec "voiceChat who you"; close wm_cool3_alt, "4", 3 ) QM_MENU_END QM_MENU_START( "wm_tweak_alt" ) QM_MENU_ITEM( "1. ^3Voice Chat ^2On", exec "cg_noVoiceChats 0"; close wm_tweak_alt, "1", 0 ) QM_MENU_ITEM( "2. ^3Voice Chat ^1Off", exec "cg_noVoiceChats 1"; close wm_tweak_alt, "2", 1 ) QM_MENU_ITEM( "3. ^3Display FPS Counter", exec "cg_drawFPS 1"; close wm_tweak_alt, "3", 2 ) QM_MENU_ITEM( "4. ^3Hide FPS Counter", exec "cg_drawFPS 0"; close wm_tweak_alt, "4", 3 ) QM_MENU_ITEM( "5. ^3Display Lagometer", exec "cg_lagometer 1"; close wm_tweak_alt, "5", 4 ) QM_MENU_ITEM( "6. ^3Disable Lagometer", exec "cg_lagometer 0"; close wm_tweak_alt, "6", 5 ) QM_MENU_ITEM( "7. ^3Simple SKY ^2ON", exec "r_fastsky 1"; close wm_tweak_alt, "7", 6 ) QM_MENU_END The tweaks work fine, but the sounds dont..
  15. and what type of exec would I need to make for command AFK, the one that puts the player in spec?
  16. Another question, yes im total noob:P I would like to add new commands to my server, eg. !Afk which puts you spec/ !forum which shows the forum. I've recieved this kind of template from one of my friends but not able to use it.. [command] command = exec = desc = levels = Hope you can help.
  17. makavelii

    Vsays

    Okay thanks, ill try that. Mam nadzieje że nie spieprze sprawy dzięki
  18. makavelii

    Vsays

    Hey guys, I have a question. Is it possible to put in custom vsays like songs sounds etc on the silent mod? If yes how do you do that? Thanks in advance.
  19. okay thank you, ill see if it works and if it doesnt theeen.. I don't know
  20. Okay, and for example I can give it any name I want and the server will still read it?
×
×
  • Create New...