Stream Twitch.tv

Hier j’ai tenté de faire un Stream autant pour tester ma configuration Internet / Microphone que ma capacité à pouvoir me rappeler des techniques du randomizer A Link to the Past.

J’ai choisi une seed daily à partir du générateur de seed daily du randomizer A Link To the past.

Mon stream est encore visible sur mon twitch et plus exactement ma vidéo est ici.

J’ai abandonné en cours de route, et je suis sûr que par moment on peut entendre ma frustration dans ma voix. (Si la qualité audio est suffisante)

Sorry for English speaker, I only spoke french apart from a little sentence in English

Je remercie également la communauté francophone et SpeedgamingFrançais (leur discord) pour m’avoir fait découvrir le randomizeur A Link to the past.

A bientôt j’espère pour mon prochain live Twitch.

Creeper World 4 – AC Creator

Ceci est le code pour une unité personnalisé que je suis en train de créer pour le jeu Creeper World 4 de Knuckle Cracker

# --AC Creator-- 12/27/2020 7:37:26 PM
$$VERSION:0.07
$AMOUNT:-1
$DELAY:30
$CHARGES:200.0
$UNITCHARGES:50.0

if(GetTimer0 eq0)
	@find_units
	SetTimer0(<-DELAY)
endif

SetUnitUIText(Self 1 concat("Delay : " <-delay -(<-Delay -(GetTimer0))))

:debug_popup
->text ->indice 

<-text ->debug_text{<-indice}
SetUnitPopupText0(self <-debug_text)

:once
	if(GetEditMode())
		SetUnitSelectable(Self true)
		debug(1)
		SetUnitDebugText(Self "")
		SetUnitPopupEnabled(self true)
		CreateTable ->debug_text
	else
		SetUnitSelectable(Self true)
		SetUnitPopupEnabled(self false)
		debug(0)
	endif
	@debug_popup("VERSION" <-VERSION)
	SetUnitUIText(Self 0 concat("Charges : " <-CHARGES))
	SetUnitUIText(Self 1 concat("Delay : " <-DELAY))
	SetTimer0(<-DELAY)

:find_units
GetUnitsInRange( GetUnitPosition(self) 9999 true true false 2 1 1) ->units
@debug_popup("list" <-units)
GetListCount(<-units) ->UnitsNombre
@debug_popup("List count" <-UnitsNombre)
if(<-UnitsNombre gt0)
	do(<-UnitsNombre 0)
		GetListElement(<-units I) ->unit
		@debug_popup(I <-Unit)
		SetCreeper(GetUnitCell(<-unit) <-AMOUNT False)
	loop
	<-UnitsNombre div(<-UNITCHARGES) ->charge_ratio
	@debug_popup("CHARGE Ratio2" <-charge_ratio)
	<-CHARGES -(<-charge_ratio) ->CHARGES
	@debug_popup("CHARGES UPDATED" <-CHARGES)
	SetUnitUIText(Self 0 concat("Charges : " <-charges))
	if(<-CHARGES lte(0))
		ShowGameMessage("Alas" "" "" true)
		DestroyUnit(self false false true)
	endif
endif

Lien vers le fichier (Github)

Ouvrir une invite de commande sur un dossier (Registre Windows)

Permet d’ouvrir une invite de commande sur un dossier avec le menu contextuel

REGEDIT4 

[HKEY_CLASSES_ROOT\Directory\shell\CmdDirectory] 
@="Invite de commande"

[HKEY_CLASSES_ROOT\Directory\shell\CmdDirectory\command] 
@="c:\\windows\\SYSTEM32\\cmd.exe /k cd \"%1\"" 

[HKEY_CLASSES_ROOT\Drive\shell\CmdDirectory] 
@="Invite de commande"

[HKEY_CLASSES_ROOT\Drive\shell\CmdDirectory\command] 
@="c:\\windows\\SYSTEM32\\cmd.exe /k cd \"%1\""

[Dotclear] Configuration URL Rewriting

Mode Path INFO

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule (.*) index.php/$1
    RewriteRule ^index.php$  index.php/
</IfModule>

Mode Query String

<IfModule mod_rewrite.c>
    RewriteEngine on 
    RewriteCond %{REQUEST_FILENAME} !-f 
    RewriteCond %{REQUEST_FILENAME} !-d 
    RewriteRule (.*) index.php?$1
</IfModule>