Jump to content
View in the app

A better way to browse. Learn more.

Forum Supreme-Elite

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Fankine

Accustomed
  • Joined

  • Last visited

  1. Mdr le screen du MP à Chips après ses insultes (va falloir apprendre à garder son sang froid pour les insultes moray) tu veux redevenir staff surf ? M'enfin tu verra si tu lis le mp cmer que j'ai pas voulu mettre les serveurs en PLS (de toutes j'ai pas envie de le faire, ni les accès pour), je savais pertinement que tu pourrais remettre facilement la bdd en état (surtout que j'ai fait que 3 TRUNCATE, et non des DROP, je sais ce que j'ai fait et je l'assume ). Puis pour la plainte, lol. Tu veux salir ma réputation je comprend bien que je t'ai énervé mais bon, on parle d'un serveur jailbreak CSS avec 30personnes maxi qui tournent maintenant, tu pense pas que tu vas un peu loin ? Ta plainte va finir au fond d'un tiroir (Tu crois qu'une firme aussi grande qu'atos en a quelque chose à faire ? Il s'en tapent déjà de leur propres employés avec leur plan social de 900 employé déguisé prévu pour mars, mais c'est une autre histoire). Puis c'est pas illégal les SE avec le système VIP et les cottiz vu qu'il n'y a aucune forme juridique ? Enfin après je m'y connais pas réellement. Enfin bref, sans rancune.
  2. Logiquement parlant c'est réalisable, mais clairement trop compliqué à mettre en place. Faut pas rêver ce gift verra jamais le jour
  3. o nn ou aisse ke je v pouvoar regarD mé séri snif snif
  4. Fankine replied to Raphi's topic in Vos créations
    Le mec qui réussi à perdre des HP alors qu'il est seul sur la map gg Sinon j'aime bien l'intérieur ça me rappelle un peu shroomforest
  5. Ah tu veux juste retirer la balise [VIP] du chat ? C'est facile, il faut juste que tu me donne la liste des gifts que tu as actuellement.
  6. C'est pas compliqué à modifier, suffit de rendre la commande publique en retirant les tests pour voir si un client est admin/root/vip. Sent from my iPhone using Tapatalk
  7. Ah d'accord, j'vais être occupé jusqu'à mercredi, j'essaierais de te faire une modif ensuite.
  8. Ce plugin existe déjà en publique : https://forums.alliedmods.net/showthread.php?p=1775151
  9. Bienvenue Sent from my iPhone using Tapatalk
  10. Je pensais peut-être me l'acheter, elle a l'air d'être vraiment sympa, j'ai lu pas mal d'avis positif dessus. De toute façon t'as 14 jours après réception de ton colis pour renvoyer le produit s'il te conviens pas si t'as commandé sur internet, ils peuvent pas refuser et son obligés de te rembourser.
  11. Fankine replied to Takuro's topic in Demande
    #include <sourcemod> #include <colors> #include <cstrike> #include <sdktools> #define PLUGIN_VERSION "1.0" new Handle:rd_sound; new Handle:rd_path; new String:path2[200]; new String:str2[254]; new String:arr2[20][30]; new random; new ok[MAXPLAYERS+1]; public Plugin:myinfo = { name = "Random Sound", author = "Dertione", description = "", version = PLUGIN_VERSION, url = "http://forum.supreme-elite.fr/" }; public OnPluginStart() { CreateConVar("rd_version", PLUGIN_VERSION, "", FCVAR_PLUGIN | FCVAR_REPLICATED | FCVAR_NOTIFY); rd_sound = CreateConVar("rd_sound", "I_like_to_move_it loose_your_self", "Remplir par le nom du fichier mp3 sans .mp3 et chaque son séparer par des espaces", FCVAR_PLUGIN); rd_path = CreateConVar("rd_path", "rd/", "le dossier où se trouve les sons automatiquement dans sound/", FCVAR_PLUGIN); AutoExecConfig(true, "rd_sound"); RegConsoleCmd("stop", Command_Stop, "Commande pour stop la musique"); RegConsoleCmd("active", Command_Active, "Commande pour desactiver la musique"); HookEvent("round_start", EventRoundStart, EventHookMode_PostNoCopy); } public OnConfigsExecuted() { new String:str[254]; new String:arr[20][30]; new String:path[200]; new random; /* ON REPREND LA CVAR */ GetConVarString(rd_sound, str, 254); GetConVarString(rd_path, path, 254); new total = ExplodeString(str, " ", arr, 20, 30); if(total == 0) strcopy(arr[total], 30, str); for (new i = 0; i <= total; i++) { Format(path, 254, "%s%s.mp3", path, arr[i]); PrecacheSound(path, true); Format(path, 254, "sound/%s", path); AddFileToDownloadsTable(path); } } public EventRoundStart(Handle:event, const String:name[], bool:dontBroadcast) { CreateTimer(5, StartTimer); for (new i = 1; i <= GetMaxClients(); i++) { CreateTimer(20, RoundTimer, i, TIMER_REPEAT); } } public Action:StartTimer(Handle:timer, any:client) { /* ON REPREND LA CVAR */ GetConVarString(rd_sound, str2, 254); GetConVarString(rd_path, path2, 254); new total = ExplodeString(str2, " ", arr2, 20, 30); if(total == 0) strcopy(arr2[total++], 30, str2); random = GetRandomInt(0,19); Format(path2, 254, "%s%s.mp3", path2, arr2[random]); for (new i = 1; i <= GetMaxClients(); i++) { if(IsClientConnected(i) && ok[i]==1) { EmitSoundToClient(client, path2, SOUND_FROM_PLAYER, SNDCHAN_AUTO, SNDLEVEL_GUNFIRE); } } } public Action:RoundTimer(Handle:timer, any:client) { if(ok[client]==1) CPrintToChat(client,"Le son qui est joué est {green}%s.", arr2[random]); CPrintToChat(client,"Pour activer ou desactiver le son, tapez /active", arr2[random]); } public Action:Command_Stop(client, args) { StopSound(client, SNDCHAN_STATIC, arr2[random]); } public Action:Command_Active(client, args) { if(ok[client] == 0) { ok[client] = 1; CPrintToChat(client,"{green} Sound activated next round"); } else { ok[client] = 0; CPrintToChat(client,"{green} Sound desactivated"); StopSound(client, SNDCHAN_STATIC, arr2[random]); } } Rien de bien méchant à modifier, surtout des erreurs d’étourderies (BIEN TU APPELLE DES FONCTIONS DE SDKTOOLS MAIS TU LE MET PAS EN INCLUDE MOMO ?). Cette version compile, à tester sur un serveur cependant.
  12. Fankine replied to Takuro's topic in Demande
    Il te manque l'include colors, télécharge le ici et met le dans le fichier scripting/include
  13. Branche ton écran à la carte mère voire ce que ça te donne, si écran noir toujours alors tente de retirer la CG voir si tu as une image. Ta CG s'allume car elle est bien allimentée, normalement les Nvidia te sortent quand même une image sans driver mais on dirais que c'est pas ton cas, tente aussi la maj du bios comme l'a dit cmer si tu l'as pas déjà fait.
  14. Chips réussi toujours l'impossible

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.