beautified the plugin #1
1 changed files with 27 additions and 36 deletions
|
@ -62,26 +62,20 @@ public void OnConfigsExecuted() {
|
|||
g_iPBAmount = GetConVarInt(g_hPBAmount);
|
||||
}
|
||||
|
||||
public void OnMapStart()
|
||||
{
|
||||
public void OnMapStart() {
|
||||
GetCurrentMap(gS_Map, 160);
|
||||
GetMapDisplayName(gS_Map, gS_Map, 160);
|
||||
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);
|
||||
fpb = Shavit_GetClientPB(client, istyle, 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)
|
||||
{
|
||||
public void Shavit_OnFinish(int client, int style, float time, int jumps, int track) {
|
||||
if (g_iNormalEnabled == 1) {
|
||||
if (g_iT1Enabled == 1 || iTier != 1) {
|
||||
int fcredits = GetConVarInt(g_hNormalAmount) * iTier;
|
||||
|
||||
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) {
|
||||
|
||||
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)
|
||||
{
|
||||
if(g_iWREnabled == 1)
|
||||
{
|
||||
public void Shavit_OnWorldRecord(int client, int style, float time, int jumps, int track) {
|
||||
if (g_iWREnabled == 1) {
|
||||
int fcredits = GetConVarInt(g_hWrAmount) * iTier;
|
||||
|
||||
Store_SetClientCredits(client, Store_GetClientCredits(client) + fcredits);
|
||||
|
|
Loading…
Reference in a new issue