Thread: GScript Wiki
View Single Post
  #13  
Old 01-20-2007, 12:10 PM
Skyld Skyld is offline
Script-fu
Skyld's Avatar
Join Date: Jan 2002
Location: United Kingdom
Posts: 3,914
Skyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud of
Send a message via AIM to Skyld
Quote:
Originally Posted by Andy0687 View Post
Does this sound wrong of me that I dont know how to add a new page ?

Never done this before, but I want to start helping
Just edit the URL to point to the new page that you're making by changing the name after ?wakka=.

Edit: I added a new box on the homepage to allow the easy creation of pages.
Quote:
Originally Posted by Chandler
With such commands, does this mean you can only retrieve this list if you're using Client-RC? How would one detect the use of Client-RC if so?
I think most of these will only work if you have Client-RC enabled. Simply speaking before you can use Client-RC, you must try and open a session:
PHP Code:
requesttext("clientrc"1); 
If you are successfully connected to Client-RC, you'll get a response back:
PHP Code:
function onReceiveText(temp.texttypetemp.textoptiontemp.textlines)
{
  switch (
temp.texttype)
  {
    case 
"clientrc":
    {
      if (
temp.textoption == 1)
      {
        
// clientrc is working
      
}
        else
      {
        
// clientrc is not working; the error is sent in temp.textlines
      
}

      break;
    }
  }


Last edited by Skyld; 01-20-2007 at 05:24 PM..
Reply With Quote