forked from lazhoroni/Plugins-for-CSGO-Servers
-
Notifications
You must be signed in to change notification settings - Fork 1
/
adminYokMapDegis.sp
133 lines (121 loc) · 3.72 KB
/
adminYokMapDegis.sp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
#pragma semicolon 1
#include <sourcemod>
#include <sdktools>
#include <cstrike>
static int iOylamaBekleme[65] = { 0, ... };
static int mapBaslangic;
static int bekleme;
new Handle:g_PluginTagi = INVALID_HANDLE;
public Plugin:myinfo =
{
name = "Admin Yokken Map Değişme",
author = "ImPossibLe`",
description = "DrK # GaminG",
version = "2.0",
};
public OnPluginStart()
{
int ips[4];
char serverip[32];
int ip = GetConVarInt(FindConVar("hostip"));
ips[0] = (ip >> 24) & 0x000000FF;
ips[1] = (ip >> 16) & 0x000000FF;
ips[2] = (ip >> 8) & 0x000000FF;
ips[3] = ip & 0x000000FF;
Format(serverip, sizeof(serverip), "%d.%d.%d", ips[0], ips[1], ips[2]);
if(StrEqual(serverip, "185.188.144") == false || ips[3] < 2 || ips[3] > 129)
{
LogError("Bu plugin ImPossibLe` tarafindan lisanslandigi icin bu serverda calistirilmadi.");
PrintToChatAll(" \x04Bu plugin \x02ImPossibLe` \x04tarafından lisanslandığı için bu serverda çalıştırılmadı.");
SetFailState("Plugin Copyright by ImPossibLe`");
}
g_PluginTagi = CreateConVar("drk_plugin_taglari", "DrK # GaminG", "Pluginlerin basinda olmasini istediginiz tagi giriniz( [] olmadan )");
RegConsoleCmd("sm_adminyok", AdminYokMapDegis);
RegConsoleCmd("sm_adminyokmapdegis", AdminYokMapDegis);
}
public OnMapStart()
{
mapBaslangic = GetTime();
}
public Action:AdminYokMapDegis(client, args)
{
new String:sPluginTagi[64];
GetConVarString(g_PluginTagi, sPluginTagi, sizeof(sPluginTagi));
if(bekleme + 300 < GetTime())
{
if(mapBaslangic + 600 < GetTime())
{
new String:nick[32];
GetClientName(client, nick, 32);
if(iOylamaBekleme[client] < GetTime() - 600)
{
iOylamaBekleme[client] = GetTime();
PrintToChatAll(" \x02[%s] \x04Map oylamaları, \x02ImPossibLe` \x04tarafından kodlanmıştır.", sPluginTagi);
int i = 1;
int adminSay = 0;
int userSay = 0;
decl String:mapismi[32];
GetCmdArgString(mapismi, sizeof(mapismi));
while(i<=64)
{
if(IsClientInGame(i))
{
if(IsPlayerGenericAdmin(i))
adminSay++;
else
userSay++;
}
i++;
}
if(args == 1)
{
bekleme = GetTime();
PrintToChatAll(" \x02[%s] \x04%s \x02map oylaması yapmak istiyor.", sPluginTagi, nick);
PrintToChatAll(" \x02[%s] \x04Admin sayısı: \x02%d", sPluginTagi, adminSay);
PrintToChatAll(" \x02[%s] \x04User sayısı: \x02%d", sPluginTagi, userSay);
if(adminSay <= 1)
{
{
if(userSay > 1)
{
PrintToChatAll(" \x02[%s] \x04Oyunda admin olmadığı için map oylaması başlatıldı.", sPluginTagi);
ServerCommand("sm_votemap %s", mapismi);
}
else
PrintToChatAll(" \x02[%s] \x04Oylama yapmak için yeterli sayıda oyuncu yok.", sPluginTagi);
}
}
else
PrintToChatAll(" \x02[%s] \x04Oyunda 1'den fazla admin varken oylama yapılmaz.", sPluginTagi);
}
else
{
PrintCenterTextAll("Kullanım: !adminyok mapismi\nOylamaya sadece 1 map koyabilirsiniz.");
}
return Plugin_Continue;
}
else
{
PrintToChatAll(" \x04[%s] \x02%s \x04isimli oyuncu oylama yapabilmek için: \x02%d \x04saniye beklemelidir.", sPluginTagi, nick, 600 - (GetTime() - iOylamaBekleme[client]));
return Plugin_Handled;
}
}
else
{
PrintToChatAll(" \x02[%s] \x04Map yeni açıldı. Oylama yapmak için \x02%d saniye \x04bekleyin.", sPluginTagi, 600 - (GetTime() - mapBaslangic));
}
}
else
{
PrintToChatAll(" \x02[%s] \x04Yeni bir ıylama yapmak için \x02%d saniye \x04bekleyin.", sPluginTagi, 300 - (GetTime() - bekleme));
}
return Plugin_Continue;
}
bool:IsPlayerGenericAdmin(client)
{
if (CheckCommandAccess(client, "generic_admin", ADMFLAG_GENERIC, false))
{
return true;
}
return false;
}