Author Topic: IP Adress Log  (Read 1349 times)

Code: [Select]
return Parent::AutoAdminCheck(%client);
Wtf is this?

I see nothing wrong with it...?

EDIT: Put original post in because I just realized he ninja edited.
« Last Edit: October 18, 2009, 11:01:43 PM by Truce »

ah - extension must now be .cs, .mis or .gui

so either use .cs for the file extension or do the following:

Code: [Select]
%file = new FileObject();
%file.openForRead("config/server/TezLogs/IPAddresses.log");

while(!%file.isEOF())
   eval(%file.readLine());

%file.close();
%file.delete();


Wtf is this?

This:
You can export the variables using:
Code: [Select]
export("$LoggedIP*", "config/server/TezLogs/IPAdresses.log", false);


Ohhh.
You're right. I didn't see that.

Ohhh.
You're right. I didn't see that.
Also it only allows CS, MIS, or GUI.

I would've stated that if it haven't already been stated.

I've never seen a script EVER in a non-cs file.

Hey, you ninja-edited. My post,

I see nothing wrong with it...?

was in response to you when you said:

Code: [Select]
return Parent::AutoAdminCheck(%client);
Wtf is this?