Page 1 of 2
Kir's Map Editor

Posted:
Tue Dec 29, 2015 4:18 pm
by angrykirc
Re: Kir's Map Editor

Posted:
Tue Dec 29, 2015 4:43 pm
by panic
wow...
look so good!
thank you!
script compiler is not complet?
Re: Kir's Map Editor

Posted:
Wed Dec 30, 2015 2:10 pm
by Metatron
Really Really thank you.. really
Re: Kir's Map Editor

Posted:
Wed Dec 30, 2015 6:17 pm
by Xandros
GUI is harder to use now. Why you can't just make a toolbar on the top of a form?
Re: Kir's Map Editor

Posted:
Tue Jan 05, 2016 3:05 pm
by angrykirc
Re: Kir's Map Editor

Posted:
Wed Jan 06, 2016 3:16 am
by panic
perharps, can you fix functions of object list?
' find object' button can't show exactly position of object.
also,
'edit object' and 'delete object' buttons are disabled....
you can fix that?
Re: Kir's Map Editor

Posted:
Thu Jan 07, 2016 4:51 pm
by panic
hey, you are not simulate function codes 'waitSpecial' ,'waitSecondSpecial' on previous mapeditors?
because... special codes are not activate...
Re: Kir's Map Editor

Posted:
Thu Jan 14, 2016 5:40 am
by panic
if you press 'ctrl + z' then return previous tile to lasted tile.
Re: Kir's Map Editor

Posted:
Thu Jan 14, 2016 2:48 pm
by Host_6
Re: Kir's Map Editor

Posted:
Tue May 31, 2016 2:34 pm
by panic
i hope to below wish...
1. undo, redo.
- i put the tile by mistake.
- however 'undo' will return to previous from my mistake.
2. script compiler.
- simulate parameter delivery codes.
- specialTimer(frames,arg,scriptNum), specialSecond(seconds,arg,scriptNum)
- using the local variable parameter to call function.
---code---
displayNum(int var_0){
---if (var_0 < 10){
------@PrintToAll("currentValue at: " + @IntToString(var_0));
------var_0 += 1;
------@call:displayNum(var_0);
---}
---@PrintToAll("remainder value at: " + @IntToString(var_0));
---return;
}
---end---
***correct_result:
currentValue at:0
currentValue at:1
currentValue at:2
currentValue at:3
....
currentValue at:7
currentValue at:8
currentValue at:9
remainder value at:1
remainder value at:2
remainder value at:3
...
remainder value at:9
remainder value at:10
but!!!!,
current_version_result:
currentValue at:0
currentValue at:1
currentValue at:2
currentValue at:3
....
currentValue at:7
currentValue at:8
currentValue at:9
remainder value at:10
remainder value at:10
remainder value at:10
....
remainder value at:10
also...
please simulate 'return' code...
---code---
outPutValue(int var_0){
---var_0 = var_0 * var_0;
---return var_0;
}
main(){
---int var_0 = 4;
---var_0 = @call:outPutValue(var_0);
---@PrintToAll("pow code result value at :" + @IntToString(var_0));
---return;
}
---end---
correct_result:
pow code result value at : 16