Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 09/24/14 in all areas

  1. Purple

    ET AMP

    ET AMP ET AMP is a server sided lua modification for wolfenstein enemy territory. ET AMP brings you multiadministration functionality on the go. ET amp offers many features and custom optimization for every servers need. -Features Auto Team balance~ Auto team balance makes sure that weather there is a admin online or offline teams will be even and fair for players! Connect info~ Connect info gives various information about a player when they connect to the server such as their location and their client version. AMMo4u~ Ammo4u allows you to edit the amount of ammo inside of each weapon giving you full customization to every weapon. xp4level~ Xp4level allows you to give players admin levels based off how much xp they have on your server. ETA rate~ ETA Rate is a custom stats list based off a calculation of kills, deaths and xp aquired to give each player a skill rating ETA STATS~ ETA stats are players global stats that are uploaded to a database online then show to a webpage via php allowing each user to see their total ammount of kills deaths xp and more. ETA KEY~ ETA key is a custom server sided guid to make sure weather player looses their Silent.dat/etkey/nguid they will continue to have their xp and admin levels. ETA IRC~ ETA IRC will alow you to see everything being said on your server on a irc server. ETA DONATE~ ETA Donate will allow you to set custom affixes/suffixes to players that have donated to your server. e.g ( [DONATOR]DRI*VJ* ) ETA MAIL~ ETA mail allows you to send a message to a player wheather they are online or offline. ETA PANEL~ ETA PANEL is a php panel for server administrators and moderators allowing you to have remote access to your server. Features included: Send custom commands from php See server logs (pm, say, say_team, say_teamnl) See server console via ETA IRC See server information such as players online, names, and ETA RATE These are some of the basics of what ETA is offering to the ET community. I got the idea for ENHMOD for jaymod which didn't support othere mods. If you are interested in having this on your server and or beta testing it when it comes out please fill out this small application. Name: xfire: Server name: server ip: Why ETA?: ( will add pictures and stuff in the future, if you are interested in contributing to this project please pm me)
    1 point
  2. gaoesa

    KR/PRW Lua

    Sorry, I didn't realize the field names were missing. I added them now. They are sess.overall_killrating and sess.rating for PRW. If you want them in the same format as they are in the scoreboard, the formula for kill rating is: (1.0 / (1.0+exp(-(sess.overall_killrating*(1.0 / sqrt(1.0+sess.overall_killvariance*3.0/(M_PI*M_PI))))))) / (1.0 - (1.0 / (1.0+exp(-(sess.overall_killrating*(1.0 / sqrt(1.0+sess.overall_killvariance*3.0/(M_PI*M_PI)))))))) ,where M_PI is 3.14159265358979323846 Maybe a bit clearer in Lua function kill_probability(net, g_of_x_margin) return 1.0 / (1.0+math.exp(-(net*g_of_x_margin))) end function g_of_x(variance) local M_PI = 3.14159265358979323846 return 1.0 / math.sqrt(1.0+variance*3.0/(M_PI*M_PI)) end function GetKillRating local probability = kill_probability(rating,g_of_x(variance)) return probability / (1.0f - probability) end No guarantees that the script works.
    1 point
×
×
  • Create New...