Hello, I moved your topic to a more appropriate forum.
Also please note this forum is English-only, so please provide at least a google translate of your post.
To get help in French, you can check the French speaking community forums : forum.construct-french.fr
---
Bonjour, j'ai déplacé votre sujet vers un forum plus approprié.
Veuillez noter que ces forums sont en Anglais uniquement et que tout message dans une langue différente se doit d'être accompagné d'une traduction, même au moins une google translate.
Pour obtenir de l'aide en Français vous pouvez allez faire un tour sur le forums de la communauté francophone : forum.construct-french.fr
----
You likely will need your cells to be instances that will hold instance variables.
Your cells will likely need an instance variable to hold their X position in the grid, an instance variable to hold their Y position in the grid and an instance variable that hold their Value value.
X and Y position will help you determine the adjacent cells.
You will be able to pick the cell a character is standing on, and then pick the cells at X position - 1 and X position + 1 and Y position - 1 and Y position + 1 (plus diagonals if that's what you want).
For each picked cell, you will be able to modify the "Value"'s value.