beautified the plugin #1

Merged
Totenfluch merged 10 commits from master into master 2019-05-01 00:25:24 +02:00
Showing only changes of commit 7a42282407 - Show all commits

View file

@ -62,26 +62,20 @@ public void OnConfigsExecuted() {
g_iPBAmount = GetConVarInt(g_hPBAmount); g_iPBAmount = GetConVarInt(g_hPBAmount);
} }
public void OnMapStart() public void OnMapStart() {
{
GetCurrentMap(gS_Map, 160); GetCurrentMap(gS_Map, 160);
GetMapDisplayName(gS_Map, gS_Map, 160); GetMapDisplayName(gS_Map, gS_Map, 160);
iTier = Shavit_GetMapTier(gS_Map); iTier = Shavit_GetMapTier(gS_Map);
} }
public Action Shavit_OnStart(int client, int track) public Action Shavit_OnStart(int client, int track) {
{
istyle = Shavit_GetBhopStyle(client); istyle = Shavit_GetBhopStyle(client);
fpb = Shavit_GetClientPB(client, istyle, track); fpb = Shavit_GetClientPB(client, istyle, track);
} }
public void Shavit_OnFinish(int client, int style, float time, int jumps, int track) public void Shavit_OnFinish(int client, int style, float time, int jumps, int track) {
{ if (g_iNormalEnabled == 1) {
if (g_iT1Enabled == 1 || iTier != 1) {
if(g_iNormalEnabled == 1)
{
if(g_iT1Enabled == 1 || iTier != 1)
{
int fcredits = GetConVarInt(g_hNormalAmount) * iTier; int fcredits = GetConVarInt(g_hNormalAmount) * iTier;
Store_SetClientCredits(client, Store_GetClientCredits(client) + fcredits); Store_SetClientCredits(client, Store_GetClientCredits(client) + fcredits);
@ -89,8 +83,7 @@ public void Shavit_OnFinish(int client, int style, float time, int jumps, int tr
} }
} }
if(g_iPBEnabled == 1) if (g_iPBEnabled == 1) {
{
if (time < fpb) { if (time < fpb) {
int fcredits = GetConVarInt(g_hPBAmount) * iTier; int fcredits = GetConVarInt(g_hPBAmount) * iTier;
@ -101,10 +94,8 @@ public void Shavit_OnFinish(int client, int style, float time, int jumps, int tr
} }
} }
public void Shavit_OnWorldRecord(int client, int style, float time, int jumps, int track) public void Shavit_OnWorldRecord(int client, int style, float time, int jumps, int track) {
{ if (g_iWREnabled == 1) {
if(g_iWREnabled == 1)
{
int fcredits = GetConVarInt(g_hWrAmount) * iTier; int fcredits = GetConVarInt(g_hWrAmount) * iTier;
Store_SetClientCredits(client, Store_GetClientCredits(client) + fcredits); Store_SetClientCredits(client, Store_GetClientCredits(client) + fcredits);