diff --git a/stamm.sp b/stamm.sp index 48f7400..611ea4a 100644 --- a/stamm.sp +++ b/stamm.sp @@ -292,6 +292,7 @@ public OnConfigsExecuted() if (LibraryExists("updater") && GetConVarBool(configlib_WantUpdate)) { Updater_AddPlugin(UPDATE_URL); + Updater_ForceUpdate(); } diff --git a/stamm/globals.sp b/stamm/globals.sp index b2b7e18..bd2d668 100644 --- a/stamm/globals.sp +++ b/stamm/globals.sp @@ -104,8 +104,8 @@ new StammGames:g_iGameID; // String globals new String:g_sAdminMenu[32]; -new String:g_sPluginVersion[16] = "2.2"; -new String:g_sPluginVersionUpdate[16] = "2.2.0"; +new String:g_sPluginVersion[16] = "2.21"; +new String:g_sPluginVersionUpdate[16] = "2.2.1"; new String:g_sTableName[64]; new String:g_sTextToWrite[32]; new String:g_sTextToWriteF[32]; diff --git a/stamm_adminflag.sp b/stamm_adminflag.sp index a5da88d..1d8788c 100644 --- a/stamm_adminflag.sp +++ b/stamm_adminflag.sp @@ -40,7 +40,7 @@ public Plugin:myinfo = { name = "Stamm Feature Admin Flags", author = "Popoklopsi", - version = "1.4.0", + version = "1.4.1", description = "Give VIP's Admin Flags", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -77,6 +77,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) { // Add to auto updater Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } diff --git a/stamm_antiflash.sp b/stamm_antiflash.sp index 231d7ba..31141b5 100644 --- a/stamm_antiflash.sp +++ b/stamm_antiflash.sp @@ -1,4 +1,3 @@ - /** * ----------------------------------------------------- * File stamm_antiflash.sp @@ -46,7 +45,7 @@ public Plugin:myinfo = { name = "Stamm Feature Anti Flash", author = "Popoklopsi", - version = "1.4.0", + version = "1.4.1", description = "Give VIP's anti flash", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -93,6 +92,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_chat_messages.sp b/stamm_chat_messages.sp index 1d43285..98d16c9 100644 --- a/stamm_chat_messages.sp +++ b/stamm_chat_messages.sp @@ -45,7 +45,7 @@ public Plugin:myinfo = { name = "Stamm Feature Chat Messages", author = "Popoklopsi", - version = "1.3.0", + version = "1.3.1", description = "Give VIP's VIP Chat and Message", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -82,6 +82,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } diff --git a/stamm_chatcolors.sp b/stamm_chatcolors.sp index 742ddd3..d8893ee 100644 --- a/stamm_chatcolors.sp +++ b/stamm_chatcolors.sp @@ -47,7 +47,7 @@ public Plugin:myinfo = { name = "Stamm Feature Chat Colors", author = "Popoklopsi", - version = "1.0.0", + version = "1.0.1", description = "Give VIP's a own chat color and chat tag", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -231,6 +231,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_chats.sp b/stamm_chats.sp index e83cdc9..471a144 100644 --- a/stamm_chats.sp +++ b/stamm_chats.sp @@ -53,7 +53,7 @@ public Plugin:myinfo = { name = "Stamm Feature Chats", author = "Popoklopsi", - version = "1.3.0", + version = "1.3.1", description = "Give VIP's welcome and leave message", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -93,7 +93,8 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { - Updater_AddPlugin(urlString); + Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } diff --git a/stamm_colored_smokes.sp b/stamm_colored_smokes.sp index d083bbd..18ff874 100644 --- a/stamm_colored_smokes.sp +++ b/stamm_colored_smokes.sp @@ -46,7 +46,7 @@ public Plugin:myinfo = { name = "Stamm Feature Colored Smokes", author = "Popoklopsi", - version = "1.3.0", + version = "1.3.1", description = "Give VIP's colored smokes", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -65,6 +65,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_distance.sp b/stamm_distance.sp index 32f9cec..5cb1a18 100644 --- a/stamm_distance.sp +++ b/stamm_distance.sp @@ -48,7 +48,7 @@ public Plugin:myinfo = { name = "Stamm Feature Distance", author = "Popoklopsi", - version = "1.1.0", + version = "1.1.1", description = "VIP's see the distance and direction to the nearest player", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -84,6 +84,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } diff --git a/stamm_easybhop.sp b/stamm_easybhop.sp index 9f94158..84f371d 100644 --- a/stamm_easybhop.sp +++ b/stamm_easybhop.sp @@ -38,7 +38,7 @@ public Plugin:myinfo = { name = "EasyBhop", author = "Bara", - version = "1.1.0", + version = "1.1.1", description = "Give VIP's eady bunnyhop", url = "www.bara.in" }; @@ -57,6 +57,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_end_immunity.sp b/stamm_end_immunity.sp index 53d15d4..45df582 100644 --- a/stamm_end_immunity.sp +++ b/stamm_end_immunity.sp @@ -51,7 +51,7 @@ public Plugin:myinfo = { name = "Stamm Feature End of Round Immunity", author = "Popoklopsi", - version = "1.1.0", + version = "1.1.1", description = "Give VIP's immunity at the end of the round", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -70,6 +70,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_fastladder.sp b/stamm_fastladder.sp index 2cf3f73..348b0c6 100644 --- a/stamm_fastladder.sp +++ b/stamm_fastladder.sp @@ -40,7 +40,7 @@ public Plugin:myinfo = name = "FastLadder", author = "Bara", description = "Prohibit non VIP's the fast go up on ladders", - version = "1.1.0", + version = "1.1.1", url = "www.bara.in" }; @@ -57,6 +57,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_fireweapon.sp b/stamm_fireweapon.sp index 52d934d..e3abf00 100644 --- a/stamm_fireweapon.sp +++ b/stamm_fireweapon.sp @@ -40,7 +40,7 @@ public Plugin:myinfo = { name = "Stamm Feature FireWeapon", author = "Popoklopsi", - version = "1.1.0", + version = "1.1.1", description = "VIP's can ignite players with there weapon", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -59,6 +59,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_flagpoints.sp b/stamm_flagpoints.sp index ffda464..04a3073 100644 --- a/stamm_flagpoints.sp +++ b/stamm_flagpoints.sp @@ -44,7 +44,7 @@ public Plugin:myinfo = { name = "Stamm Feature FlagPoints", author = "Popoklopsi", - version = "1.1.0", + version = "1.1.1", description = "Give only points to players with a specific flag", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -62,6 +62,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_froggyjump.sp b/stamm_froggyjump.sp index dcbe059..60536b7 100644 --- a/stamm_froggyjump.sp +++ b/stamm_froggyjump.sp @@ -52,7 +52,7 @@ public Plugin:myinfo = { name = "Stamm Feature FroggyJump", author = "Popoklopsi", - version = "1.1.0", + version = "1.1.1", description = "VIP's have Froggy Jump", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -71,6 +71,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_grenadetrail.sp b/stamm_grenadetrail.sp index 61b7bab..6caeb97 100644 --- a/stamm_grenadetrail.sp +++ b/stamm_grenadetrail.sp @@ -51,7 +51,7 @@ public Plugin:myinfo = { name = "Stamm Feature GrenadeTrail", author = "Popoklopsi", - version = "1.4.0", + version = "1.4.1", description = "Give VIP's a grenade trail", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -69,6 +69,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_high_firingrate.sp b/stamm_high_firingrate.sp index d34c88a..e73a3fc 100644 --- a/stamm_high_firingrate.sp +++ b/stamm_high_firingrate.sp @@ -48,7 +48,7 @@ public Plugin:myinfo = { name = "Stamm Feature Higher Firing Rate", author = "Popoklopsi", - version = "1.1.0", + version = "1.1.1", description = "Give VIP's higher firing Rate", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -112,6 +112,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_holy.sp b/stamm_holy.sp index 652a3fc..02731fa 100644 --- a/stamm_holy.sp +++ b/stamm_holy.sp @@ -46,7 +46,7 @@ public Plugin:myinfo = { name = "Stamm Feature Holy Granade", author = "Popoklopsi", - version = "1.4.0", + version = "1.4.1", description = "Give VIP's a holy granade", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -64,6 +64,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_hookgrabrope.sp b/stamm_hookgrabrope.sp index b5fbf31..ef1b917 100644 --- a/stamm_hookgrabrope.sp +++ b/stamm_hookgrabrope.sp @@ -46,7 +46,7 @@ public Plugin:myinfo = { name = "Stamm Feature Hook Grab Rope", author = "Popoklopsi", - version = "1.1.0", + version = "1.1.1", description = "Allows VIP's to grab, hook or rope", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -85,6 +85,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } diff --git a/stamm_icon.sp b/stamm_icon.sp index 4148453..438cf89 100644 --- a/stamm_icon.sp +++ b/stamm_icon.sp @@ -44,7 +44,7 @@ public Plugin:myinfo = { name = "Stamm Feature Icon", author = "Popoklopsi", - version = "1.3.0", + version = "1.3.1", description = "Adds an Stamm Icon on top of a player", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -62,6 +62,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_instant_defuse.sp b/stamm_instant_defuse.sp index f419e90..0273e20 100644 --- a/stamm_instant_defuse.sp +++ b/stamm_instant_defuse.sp @@ -39,7 +39,7 @@ public Plugin:myinfo = { name = "Stamm Feature Instant Defuse", author = "Popoklopsi", - version = "1.3.0", + version = "1.3.1", description = "VIP's can defuse the bomb instantly", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -58,6 +58,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_joinsound.sp b/stamm_joinsound.sp index 4249dc9..4db1ea1 100644 --- a/stamm_joinsound.sp +++ b/stamm_joinsound.sp @@ -45,7 +45,7 @@ public Plugin:myinfo = { name = "Stamm Feature Joinsound", author = "Popoklopsi", - version = "1.4.0", + version = "1.4.1", description = "Give VIP's a Joinsound", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -63,6 +63,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_killhp.sp b/stamm_killhp.sp index e6ef7bf..849e6b9 100644 --- a/stamm_killhp.sp +++ b/stamm_killhp.sp @@ -45,7 +45,7 @@ public Plugin:myinfo = { name = "Stamm Feature KillHP", author = "Popoklopsi", - version = "1.3.0", + version = "1.3.1", description = "Give VIP's HP every kill", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -79,6 +79,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_knife_infect.sp b/stamm_knife_infect.sp index 22e6fa5..f615a3b 100644 --- a/stamm_knife_infect.sp +++ b/stamm_knife_infect.sp @@ -51,7 +51,7 @@ public Plugin:myinfo = { name = "Stamm Feature KnifeInfect", author = "Popoklopsi", - version = "1.3.0", + version = "1.3.1", description = "VIP's can infect players with knife", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -70,6 +70,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_lessgravity.sp b/stamm_lessgravity.sp index fdf11db..b5d0b5f 100644 --- a/stamm_lessgravity.sp +++ b/stamm_lessgravity.sp @@ -45,7 +45,7 @@ public Plugin:myinfo = { name = "Stamm Feature LessGravity", author = "Popoklopsi", - version = "1.3.0", + version = "1.3.1", description = "Give VIP's less gravity", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -97,6 +97,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_longjump.sp b/stamm_longjump.sp index d3e4ea3..c6cb41d 100644 --- a/stamm_longjump.sp +++ b/stamm_longjump.sp @@ -47,7 +47,7 @@ public Plugin:myinfo = { name = "Stamm Feature LongJump", author = "Popoklopsi", - version = "1.1.0", + version = "1.1.1", description = "VIP's have Long Jump", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -85,6 +85,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_losepoints.sp b/stamm_losepoints.sp index f20f73d..becac65 100644 --- a/stamm_losepoints.sp +++ b/stamm_losepoints.sp @@ -48,7 +48,7 @@ public Plugin:myinfo = { name = "Stamm Feature LosePoints", author = "Popoklopsi", - version = "1.1.0", + version = "1.1.1", description = "Non VIP's lose until a specific level points on death", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -96,6 +96,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_models.sp b/stamm_models.sp index 41d3ba3..03cd963 100644 --- a/stamm_models.sp +++ b/stamm_models.sp @@ -70,7 +70,7 @@ public Plugin:myinfo = { name = "Stamm Feature Vip Models", author = "Popoklopsi", - version = "1.3.0", + version = "1.3.1", description = "Give VIP's VIP Models", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -107,6 +107,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) Format(urlString, sizeof(urlString), "http://popoklopsi.de/stamm/updater/update.php?plugin=%s", basename); Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } diff --git a/stamm_money.sp b/stamm_money.sp index e59ce5b..4942a0e 100644 --- a/stamm_money.sp +++ b/stamm_money.sp @@ -45,7 +45,7 @@ public Plugin:myinfo = { name = "Stamm Feature Money", author = "Popoklopsi", - version = "1.3.0", + version = "1.3.1", description = "Give VIP's every Round x Cash", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -85,6 +85,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_moreammo.sp b/stamm_moreammo.sp index 7519584..910cf4f 100644 --- a/stamm_moreammo.sp +++ b/stamm_moreammo.sp @@ -50,7 +50,7 @@ public Plugin:myinfo = { name = "Stamm Feature MoreAmmo", author = "Popoklopsi", - version = "1.3.0", + version = "1.3.1", description = "Give VIP's more ammo", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -121,6 +121,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_morespeed.sp b/stamm_morespeed.sp index 28d3ad7..cc74e85 100644 --- a/stamm_morespeed.sp +++ b/stamm_morespeed.sp @@ -45,7 +45,7 @@ public Plugin:myinfo = { name = "Stamm Feature MoreSpeed", author = "Popoklopsi", - version = "1.3.0", + version = "1.3.1", description = "Give VIP's more speed", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -98,6 +98,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_no_reload.sp b/stamm_no_reload.sp index 4070871..42242d8 100644 --- a/stamm_no_reload.sp +++ b/stamm_no_reload.sp @@ -43,7 +43,7 @@ public Plugin:myinfo = { name = "Stamm Feature No Reload", author = "Popoklopsi", - version = "1.3.0", + version = "1.3.1", description = "VIP's don't have to reload", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -63,6 +63,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_no_restrict.sp b/stamm_no_restrict.sp index c8a08f6..0f0dd8e 100644 --- a/stamm_no_restrict.sp +++ b/stamm_no_restrict.sp @@ -44,7 +44,7 @@ public Plugin:myinfo = { name = "Stamm Feature No Restrict", author = "Popoklopsi", - version = "1.3.0", + version = "1.3.1", description = "VIP's can use restricted weapons", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -63,6 +63,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_nofalldamage.sp b/stamm_nofalldamage.sp index c04af4f..bcbf5f4 100644 --- a/stamm_nofalldamage.sp +++ b/stamm_nofalldamage.sp @@ -44,7 +44,7 @@ public Plugin:myinfo = { name = "Stamm Feature No Fall Damage", author = "Popoklopsi", - version = "1.2.0", + version = "1.2.1", description = "Give VIP's No Fall Damage", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -64,6 +64,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_playertrail.sp b/stamm_playertrail.sp index 78f0c9b..86486d8 100644 --- a/stamm_playertrail.sp +++ b/stamm_playertrail.sp @@ -55,7 +55,7 @@ public Plugin:myinfo = { name = "Stamm Feature PlayerTrail", author = "Popoklopsi", - version = "1.3.0", + version = "1.3.1", description = "Give VIP's a player trail", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -74,6 +74,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_regenerate.sp b/stamm_regenerate.sp index 82b43b2..ffabd79 100644 --- a/stamm_regenerate.sp +++ b/stamm_regenerate.sp @@ -45,7 +45,7 @@ public Plugin:myinfo = { name = "Stamm Feature RegenerateHP", author = "Popoklopsi", - version = "1.3.0", + version = "1.3.1", description = "Regenerate HP of VIP's", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -80,6 +80,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_resizeplayer.sp b/stamm_resizeplayer.sp index e71f1b8..9fd1976 100644 --- a/stamm_resizeplayer.sp +++ b/stamm_resizeplayer.sp @@ -47,7 +47,7 @@ public Plugin:myinfo = { name = "Stamm Feature ResizePlayer", author = "Popoklopsi", - version = "1.1.0", + version = "1.1.1", description = "Resizes VIP's", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -112,6 +112,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_showdamage.sp b/stamm_showdamage.sp index 4952ab3..457395e 100644 --- a/stamm_showdamage.sp +++ b/stamm_showdamage.sp @@ -44,7 +44,7 @@ public Plugin:myinfo = { name = "Stamm Feature Show Damage", author = "Popoklopsi", - version = "1.3.0", + version = "1.3.1", description = "VIP's can see the damage they done", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -64,6 +64,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_slot.sp b/stamm_slot.sp index f70dd51..47d9d3f 100644 --- a/stamm_slot.sp +++ b/stamm_slot.sp @@ -55,7 +55,7 @@ public Plugin:myinfo = { name = "Stamm Feature VIP Slot", author = "Popoklopsi", - version = "1.3.0", + version = "1.3.1", description = "Give VIP's a VIP Slot", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -74,6 +74,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_spawnhp.sp b/stamm_spawnhp.sp index d7a7a44..27f993e 100644 --- a/stamm_spawnhp.sp +++ b/stamm_spawnhp.sp @@ -48,7 +48,7 @@ public Plugin:myinfo = { name = "Stamm Feature SpawnHP", author = "Popoklopsi", - version = "1.4.0", + version = "1.4.1", description = "Give VIP's more HP on spawn", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -82,6 +82,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_tag.sp b/stamm_tag.sp index a12db54..5907b4d 100644 --- a/stamm_tag.sp +++ b/stamm_tag.sp @@ -47,7 +47,7 @@ public Plugin:myinfo = { name = "Stamm Feature VIP Tag", author = "Popoklopsi", - version = "1.4.0", + version = "1.4.1", description = "Give VIP's a VIP Tag", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -119,6 +119,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_teleport.sp b/stamm_teleport.sp index 719d9bf..ab61e4a 100644 --- a/stamm_teleport.sp +++ b/stamm_teleport.sp @@ -53,7 +53,7 @@ public Plugin:myinfo = { name = "Stamm Feature Teleport", author = "Popoklopsi", - version = "1.2.0", + version = "1.2.1", description = "VIP's can create Teleport Points", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -72,6 +72,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_tf2_items.sp b/stamm_tf2_items.sp index 3c19ca4..49ac848 100644 --- a/stamm_tf2_items.sp +++ b/stamm_tf2_items.sp @@ -46,7 +46,7 @@ public Plugin:myinfo = { name = "Stamm Feature TF2 Items", author = "Popoklopsi", - version = "1.0.0", + version = "1.0.1", description = "Give VIP's Attributes on Items", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -245,6 +245,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_throwing_knifes.sp b/stamm_throwing_knifes.sp index 6bb37db..75ac245 100644 --- a/stamm_throwing_knifes.sp +++ b/stamm_throwing_knifes.sp @@ -46,7 +46,7 @@ public Plugin:myinfo = { name = "Stamm Feature Throwing Knife", author = "Popoklopsi", - version = "1.4.0", + version = "1.4.1", description = "Give VIP's every Round x Throwing Knifes", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -95,6 +95,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } } diff --git a/stamm_weapons.sp b/stamm_weapons.sp index 1fcaa04..dffba29 100644 --- a/stamm_weapons.sp +++ b/stamm_weapons.sp @@ -48,7 +48,7 @@ public Plugin:myinfo = { name = "Stamm Feature Weapons", author = "Popoklopsi", - version = "1.3.0", + version = "1.3.1", description = "Give VIP's weapons", url = "https://forums.alliedmods.net/showthread.php?t=142073" }; @@ -68,6 +68,7 @@ public STAMM_OnFeatureLoaded(const String:basename[]) if (LibraryExists("updater") && STAMM_AutoUpdate()) { Updater_AddPlugin(urlString); + Updater_ForceUpdate(); } }