Hi all. This simple PX 0.6.5 script below makes every map completely invisible :)
{*
* Invisible Map Script
* MEDVEDxEvilPunk, 17.04.11
*
* How to use: Paste this script
* in your map, using PX065 Map Editor.
* Change MAP_SIZE constants
* to your map's size.
* (using that stupid method, 'cause
* of the MapX/MapY variables doesn't
* seems to be working.)
*
* Known troubles: very long map loading
* (about 30-50 seconds for standard map size)
*}
const // Standard map size by default
MAP_SIZE_X = 1920; // Set your map's width HERE
MAP_SIZE_Y = 696; // Set your map's height HERE
procedure InitHooks;
begin RegisterHook('OnInit', ON_INIT);
end;
procedure OnInit; var X,Y:Integer;
begin
for x := 1 to MAP_SIZE_X do begin
for y := 1 to MAP_SIZE_Y do begin
if GetPixelCol(x,y) = true then
SetPixelColor(x,y,GetNearestPalColor(0,0,0));
end;
end;
end;
end.
log in, pm me or ffie that you want your name changed and we'll see what we can do.
14th April 2011, 09:22
b°ckaka.XuLiz
(*.superkabel.de) wrote:
hello guys.
just want to ask how it i can change my already registered username? (guess "I" cant do that anyway, but can you?) or is it possible to change the name of the maker of my older maps to my new name (creating new account move maps from old to new account, delet old account or maybe just rename maker)? well as you can see i dont know how it may be possible but if you have clue tell me please.
greetz
Attention ! My set of maps was finished. You can download and discus all 5 my maps for Hysteria or Normal game with good graphics : #17530 :: #17548 :: #17568 :: #17566 :: #17572 Enjoy !
got the same issue. maybe because you have no registry entries for WA? at least i suspect that for myself, but can't be bothered to look further into it.