Voici la liste des cartes que j’ai réalisé pour le mode Colonial Space du jeu Creeper World 3 par Knucle Cracker
Mois : janvier 2021
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
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\""
Générateur de Couleur HTML
Petite application réalisé en HTML5/JS récupéré du temps de Graph Web
[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>