Poll

Mango?

Mango
10 (32.3%)
Mango
0 (0%)
Mango
4 (12.9%)
Mango
8 (25.8%)
Mango
3 (9.7%)
Mango
4 (12.9%)
Mango
1 (3.2%)
Mango
1 (3.2%)

Total Members Voted: 31

Author Topic: Zombies in the Bluzone** [[CLOSING]]  (Read 481827 times)


Okay, made a report system that people can use to report other people.

yes it's not really all that complicated, you fill out a stuffty form i threw together and it files a report in a funny little table that only admins can access.


Here's a new rule i'm throwing into the mix though:
Don't loving abuse it. By "it" I mean the webserver, not just the report form. If I find you abusing it (and I will) I will permanently loving ban you from the server and the webserver on the spot. No second chances, only first (and last) offences. I don't care if you're motherloving kniaz, that webserver is my baby >:( This obviously includes you, admins. Your status will be up for review. You guys have been warned.

ok that's done lets carry on
http://69.64.43.11:33580/report.tqs

oh forgetnuggets it's broken. give me a minute goddamnit.


Oh, and playing with it to "test" it counts as abusing it. Use it when you need the goddamned thing and not earlier.
pageloss.

>breaks webserver
>gets banned from own server

forget.

Nice job Lugnut.

I like it.

;)



Kniaz, what do you think of the idea of having some Moderators incase admons go AFK?

>breaks webserver
>gets banned from own server

forget.

That would be an understatement. ._.

Nice job Lugnut.

I like it.

;)



Kniaz, what do you think of the idea of having some Moderators incase admons go AFK?
if you're thinking of my spy idea that's definitely not moderators. it's just some people who have been given the responsibility of being eyes for the admins.
>breaks webserver
>gets banned from own server

forget.
i can tell when it's accidental >.>

Well, I agree... However an admin must authenticate PK's.

If you have enough reason to kill someone, by all means, kill them. We just don't want mass-genocides occuring, really... But if someone is stupid enough to get themselves into that situation... You know how it goes...

Just take all the people who've been killed by the Mutalid or Apache. If you just played it cool, and put the gun down then you certainly would have gotten away with it.
Alright cool. So I should have just shot the forgeter. Capt'n was there so he would have authenticated it... Next time.......................

Alright cool. So I should have just shot the forgeter. Capt'n was there so he would have authenticated it... Next time.......................

I don't think I will authenticate anything for a bit, still learning my role :)

but yes that fight was kind of awkward cause I remember admins saying never kill, but he was setting himself up. Anyways we voided Gammaton, so forget all that.

Kniaz, what do you think of the idea of having some Moderators incase admons go AFK?

Hopefully the admins shouldn't go AFK, the is the point of admin.

Kniaz, what do you think of the idea of having some Moderators incase admons go AFK?

Just asking. Now I know we don't need any.

I'm on break now, I get off at around 9pm PST
« Last Edit: July 27, 2012, 07:05:40 PM by Electrk »

What state!?!

TELL ME!


tip: look for things that follow a certain nomenclature - eg
$PREF::NOTEBOOK::KEYBIND

or something

then find-replace NOMENCLATURE with Bluzone Journal
eg "NOTEBOOK" with "Bluzone Journal"



Lugnut, in the client for NoteBook, there are numerous entries stating where it's saves entries. If I modify those, will it save to another file?

Also, where would I find the preferences you're taling about for the keybind?

Code: [Select]
exec("./NoteBook.GUI");
exec("./NoteBook_View.gui");

        $remapDivision[$remapCount] = "NoteBook";
        $remapName[$remapCount] = "Open";
        $remapCmd[$remapCount] = "OpenNoteBook";
        $remapCount++;


function OpenNoteBook(%val)
{
        if(%val){
                if(NoteBook.isAwake()){
BuildNoteBook_List();
                        canvas.popdialog(NoteBook);
                }else{
                        BuildNoteBook_List();
                        canvas.pushdialog(NoteBook);
                }
        }
}



function SaveStuff(%file)
{
%text = NoteBook_Paper.getvalue();
%title = NoteBook_Name.getvalue();
%subject= NoteBook_Subject.getValue();
if(%text $= "" || %title $= "" || %subject $= "")
{
    MessageBoxOK("ERROR", "Please include Name, Subject, and some text.");
    return;
}
else
{
if(isFile("config/client/Saves/" @ %title @ ".txt"))
  fileDelete("config/client/Saves/" @ %title @ ".txt");
%file = new FileObject();
%file.openForwrite("config/client/Saves/" @ %title @ ".txt");
%file.writeLine(%title);
%file.writeLine(%subject);
%file.writeLine(%text); //IMO it's easier to put each one on another line, so we can just read them out where we want them. Only the last input can be multi-line anyway, so we don't need a special delimiter.
%file.close();
%file.delete();
discoverFile("config/client/Saves/" @ %title @ ".txt");
BuildNoteBook_List();
}
}

//my usual
function NoteBook_List::onSelect(%this,%id,%text)
{
   %file = "config/client/Saves/" @ %text @ ".txt";
   if(isFile(%file))
   {
      %fo = new FileObject();
      %fo.openForRead(%file);
      %title = %fo.readLine();
        NotebookViewer_Title.setText(%title);
        %subject = %fo.readLine();
               NotebookViewer_Subject.setText(%subject);
        canvas.pushDialog(NoteBook_View);
        if(%fo.isEoF())
NoteBookViewer_Paper.setText("This file appears to be blank or corrupted. Sorry!");
        else while(!%fo.isEOF())
       {
         %line = %fo.readLine();
         %stuff = %stuff NL %line;
       }
       NoteBookViewer_Paper.setText(%stuff);
       $CurrentNote = "config/client/Saves/" @ %text @ ".txt";
     }
  else
{
 echo("cannot find file:  " @ %stuff);
}
}

function BuildNoteBook_List() //this should be called every time we refresh the GUI, e.g. when we push it to canvas.
{
    NoteBook_List.clear();
    %path = "config/client/Saves/"; //change only this if you ever need to.
    %filesearch = FindFirstFile(%path @ "*.txt");
    %i = 0;
    while (strlen(%filesearch) > 0)
    {
        NoteBook_List.addrow(%i, getsubstr(%filesearch, strlen(%path), strlen(%filesearch)-strlen(%path)-4), %i);
        %filesearch = FindNextFile(%path @ "*.txt");
    }
}

function NoteDelete()
{
  canvas.popDialog(Notebook_View);
  fileDelete($CurrentNote);
  BuildNotebook_List();
}

function NoteModify()
{
  %title = NotebookViewer_Title.getValue();
  %subject = NotebookViewer_Subject.getValue();
  %paper = NotebookViewer_Paper.getValue();
  canvas.popDialog(Notebook_View);
  Notebook_Name.setValue(%title);
  Notebook_Subject.setValue(%subject);
  Notebook_Paper.setValue(%paper);
}



What state!?!

TELL ME!

I meant what state do you live in.

Is ike still experiencing internet problems?

I'm on break now, I get off at around 9pm PST

Midnight for me .-.

I meant what state do you live in.

My bet says he live in CA or OR