Question maybe to Mayck, maybe to FO2238 scripters:
How could I get something only for moder/admin access?
I tried for example:
void render_iface(uint layer)
{
if(layer == 3)
{
CritterCl@ chosen = GetChosen();
if(chosen.GetAccess()==ACCESS_ADMIN){
uint16 hexX=0, hexY=0;
GetMonitorHex(__MouseX, __MouseY, hexX, hexY);
DrawText("Hex: "+hexX+" "+hexY,__ScreenWidth-100,20, 100, 20, 0, FONT_FALLOUT, FT_CENTERR);
}
DrawChosenTabs();
GUI_Render();
}
But it seems, that it doesn't work (shouting something about not existing CritterCL.GetAccess function or something..)