[Home] [Downloads] [Search] [Help/forum]


Register forum user name Search FAQ

Gammon Forum

[Folder]  Entire forum
-> [Folder]  SMAUG
. -> [Folder]  SMAUG coding
. . -> [Subject]  SWR installcybernetics code error

SWR installcybernetics code error

It is now over 60 days since the last post. This thread is closed.     [Refresh] Refresh page


Pages: 1 2  

Posted by Jason   (109 posts)  [Biography] bio
Date Fri 24 Mar 2006 09:47 PM (UTC)
Message
I'm currently installing a code for player installed cybernetics...when it was a command it worked fine.. now it is crashing when i turned it into a skill and added a the timer. I marked where it is crashing in the code with a ---->

                chance = IS_NPC(ch) ? ch->top_level : (int) (ch->pcdata->learned[gsn_surgery]);
                if ( number_percent( ) < chance )
                {
                   send_to_char( "&GYou begin the long process of installing a cybernetic part.\n\r", ch);
                   act( AT_PLAIN, "$n takes $s scalpel and begins to preform the surgery.", ch, NULL, argument , TO_ROOM );
                   add_timer ( ch , TIMER_DO_FUN , 1 , do_installcybernetic , 1 );
                   ch->dest_buf   = str_dup(arg1);
                   return;
                }
                send_to_char("&RYou can't figure out how to preform surgery.\n\r",ch);
                learn_from_failure( ch, gsn_surgery );
                return;

        case 1:
                if ( !ch->dest_buf )
                 return;
                strcpy(arg1, ch->dest_buf);
                DISPOSE( ch->dest_buf);
                break;

        case SUB_TIMER_DO_ABORT:
                DISPOSE( ch->dest_buf );
                ch->substate = SUB_NONE;
                send_to_char("&RYou are interupted and fail to finish your work.\n\r", ch);
                return;
    }

    ch->substate = SUB_NONE;
    if ( ms_find_obj(ch) )
	return;

    obj = get_obj_carry( ch, arg1 );
    chance = IS_NPC(ch) ? ch->top_level : (int) (ch->pcdata->learned[gsn_surgery]) ;

    if ( number_percent( ) < chance  )
    {
       send_to_char( "You realize that you installed the cybernetic part upside down and crossed some wires.", ch);
       learn_from_failure( ch, gsn_surgery );
       separate_obj( obj );
       obj_from_char( obj );
       extract_obj( obj );
       return;
    }

    
    if (obj->item_type == ITEM_COMMCYBER)
    {
---->  if (!IS_SET(victim->pcdata->cyber, CYBER_COMM))
       {
          send_to_char( "&RThey seem to already have that cybernetic part installed.\n\r", ch);
          return;
       }
       checkcyber = TRUE;
       separate_obj( obj );
       obj_from_char( obj );
       extract_obj( obj );
       SET_BIT (victim->pcdata->cyber, CYBER_COMM );
    }

[Go to top] top

Posted by Zeno   USA  (2,871 posts)  [Biography] bio
Date Reply #1 on Fri 24 Mar 2006 09:58 PM (UTC)
Message
Use gdb to print a backtrace.

Make sure it's not checking NPCs either.

Zeno McDohl,
Owner of Bleached InuYasha Galaxy
http://www.biyg.org
[Go to top] top

Posted by Jason   (109 posts)  [Biography] bio
Date Reply #2 on Fri 24 Mar 2006 10:02 PM (UTC)
Message
i have and here is the message:

#0 0x08161db1 in do_installcybernetic (ch=0x851e448, argument=0x81880dc "")
at medical.c:168
#1 0x080b60ff in violence_update () at fight.c:261
#2 0x08125ddc in update_handler () at update.c:2301
#3 0x0809d105 in game_loop () at comm.c:576
#4 0x0809c578 in main (argc=7, argv=0xbfffde84) at comm.c:241
[Go to top] top

Posted by David Haley   USA  (3,881 posts)  [Biography] bio
Date Reply #3 on Fri 24 Mar 2006 10:09 PM (UTC)
Message
Where does the 'victim' pointer come from? It looks like you never set it, but you'll need to do that if you want this to work -- you can't dereference victim without setting it first. Also make sure as Zeno pointed out that you don't let it consider NPCs otherwise it will crash because they have no pcdata member.

David Haley aka Ksilyan
Head Programmer,
Legends of the Darkstone

http://david.the-haleys.org
[Go to top] top

Posted by Jason   (109 posts)  [Biography] bio
Date Reply #4 on Sat 25 Mar 2006 02:37 AM (UTC)
Message
ok here is the whole code so if you can find the problem cause i can't

void do_installcybernetic( CHAR_DATA * ch, char *argument )
{
    CHAR_DATA *victim;
    char arg1[MAX_INPUT_LENGTH];
    char arg2[MAX_INPUT_LENGTH];
    OBJ_DATA *holdscalpel;
    OBJ_DATA *obj;
    bool checkcyber;
    checkcyber = FALSE;
    int chance;

    argument = one_argument( argument, arg1 );
    argument = one_argument( argument, arg2 );

    switch( ch->substate )
    {
	default:
    if ( arg1[0] == '\0' )
    {
	send_to_char( "Install what?\n\r", ch );
	return;
    }

    if ( arg2[0] == '\0' )
    {
	send_to_char( "In who?\n\r", ch );
	return;
    }
    if( IS_NPC( ch ) )
      return;

    if( ( victim = get_char_room( ch, arg2 ) ) == NULL )
    {
      send_to_char( "They aren't here.\n\r", ch );
      return;
    }

    if( IS_NPC( victim ) )
    {
      send_to_char( "You can't install cybernetic parts in NPC's!\n\r", ch );
      return;
    }

    if( IS_IMMORTAL( victim ) )
    {
      send_to_char( "Don't try to install cybernetic parts on immortals.\n\r", ch );
      return;
    }

    if( ch == victim )
    {
      send_to_char( "You can't install cybernetics yourself!\n\r", ch );
      return;
    }
	holdscalpel = get_eq_char ( ch, WEAR_HOLD );
      if( holdscalpel && !( holdscalpel->item_type == ITEM_SCALPEL ) )
	holdscalpel = NULL;

    if( !holdscalpel )
    {
      send_to_char( "You need to be holding a scalpel to preform this surgery.\n\r", ch );
      return;
    }

/*    if (ch->pcdata->maxcybers == ch->pcdata->cybers )
    {
	send_to_char( "This person can't take any more cybernetics and stay human\n\r", ch );
	return;
    }*/


     for ( obj = ch->last_carrying; obj; obj = obj->prev_content )     
     {
       if (obj->item_type == ITEM_EYECYBER || obj->item_type == ITEM_COMMCYBER ||
	   obj->item_type == ITEM_LEGCYBER || obj->item_type == ITEM_CHESTCYBER ||
	   obj->item_type == ITEM_REFLEXCYBER || obj->item_type == ITEM_MINDCYBER ||
	   obj->item_type == ITEM_STRCYBER || obj->item_type == ITEM_REACTORCYBER)
	     checkcyber = TRUE;
     }
	if ( !checkcyber )
        {
          send_to_char( "&RYou don't seem  to have a cybernetic part right now.\n\r", ch);
          return;
        }

	if ( !xIS_SET(ch->in_room->room_flags, ROOM_OPERATINGROOM) )
	{
	    send_to_char ("&R You need to be in an operating room to do this proceedure.\n\r", ch );
	    return;
	}
                chance = IS_NPC(ch) ? ch->top_level : (int) (ch->pcdata->learned[gsn_surgery]);
                if ( number_percent( ) < chance )
                {
                   send_to_char( "&GYou begin the long process of installing a cybernetic part.\n\r", ch);
                   act( AT_PLAIN, "$n takes $s scalpel and begins to preform the surgery.", ch, NULL, argument , TO_ROOM );
                   add_timer ( ch , TIMER_DO_FUN , 1 , do_installcybernetic , 1 );
                   ch->dest_buf   = str_dup(arg1);
                   return;
                }
                send_to_char("&RYou can't figure out how to preform surgery.\n\r",ch);
                learn_from_failure( ch, gsn_surgery );
                return;

        case 1:
                if ( !ch->dest_buf )
                 return;
                strcpy(arg1, ch->dest_buf);
                DISPOSE( ch->dest_buf);
                break;

        case SUB_TIMER_DO_ABORT:
                DISPOSE( ch->dest_buf );
                ch->substate = SUB_NONE;
                send_to_char("&RYou are interupted and fail to finish your work.\n\r", ch);
                return;
    }

    ch->substate = SUB_NONE;
    if ( ms_find_obj(ch) )
	return;

    obj = get_obj_carry( ch, arg1 );
    chance = IS_NPC(ch) ? ch->top_level : (int) (ch->pcdata->learned[gsn_surgery]) ;

    if ( number_percent( ) < chance  )
    {
       send_to_char( "You realize that you installed the cybernetic part upside down and crossed some wires.", ch);
       learn_from_failure( ch, gsn_surgery );
       separate_obj( obj );
       obj_from_char( obj );
       extract_obj( obj );
       return;
    }
[Go to top] top

Posted by Jason   (109 posts)  [Biography] bio
Date Reply #5 on Sat 25 Mar 2006 02:39 AM (UTC)
Message
here is the rest of it


  if ( number_percent ( ) > chance)
  {  
    if (obj->item_type == ITEM_COMMCYBER)
    {
       if (!IS_SET(victim->pcdata->cyber, CYBER_COMM))
       {
          send_to_char( "&RThey seem to already have that cybernetic part installed.\n\r", ch);
          return;
       }
       checkcyber = TRUE;
       separate_obj( obj );
       obj_from_char( obj );
       extract_obj( obj );
       SET_BIT (victim->pcdata->cyber, CYBER_COMM );
    }

    else if (obj->item_type == ITEM_EYECYBER)
    {
        if (IS_SET(victim->pcdata->cyber,CYBER_EYES))
        {
            send_to_char( "&RThey seem to already have that cybernetic part installed.\n\r", ch);
            return;
        }
        SET_BIT (victim->pcdata->cyber, CYBER_EYES );
        victim->affected_by   = AFF_INFRARED;
    }
    else if (obj->item_type == ITEM_LEGCYBER)
    {
        if (IS_SET(victim->pcdata->cyber,CYBER_LEGS))
        {
            send_to_char( "&RThey seem to already have that cybernetic part installed.\n\r", ch);
             return;
        }
       checkcyber = TRUE;
       separate_obj( obj );
       obj_from_char( obj );
       extract_obj( obj );
        SET_BIT (victim->pcdata->cyber, CYBER_LEGS );
        victim->max_move += number_range ( 200 , 500 );
    }
    else if (obj->item_type == ITEM_CHESTCYBER)
    {
        if (IS_SET(victim->pcdata->cyber,CYBER_CHEST))
        {
            send_to_char( "&RThey seem to already have that cybernetic part installed.\n\r", ch);
             return;
        }
       checkcyber = TRUE;
       separate_obj( obj );
       obj_from_char( obj );
       extract_obj( obj );
        SET_BIT (victim->pcdata->cyber, CYBER_CHEST );
    }
    else if (obj->item_type == ITEM_REFLEXCYBER)
    {
        if (IS_SET(victim->pcdata->cyber,CYBER_REFLEXES))
        {
            send_to_char( "&RThey seem to already have that cybernetic part installed.\n\r", ch);
             return;
        }
       checkcyber = TRUE;
       separate_obj( obj );
       obj_from_char( obj );
       extract_obj( obj );
        SET_BIT (victim->pcdata->cyber, CYBER_REFLEXES );
    }
    else if (obj->item_type == ITEM_REACTORCYBER)
    {
        if (IS_SET(victim->pcdata->cyber,CYBER_REACTOR))
        {
            send_to_char( "&RThey seem to already have that cybernetic part installed.\n\r", ch);
             return;
        }
       checkcyber = TRUE;
       separate_obj( obj );
       obj_from_char( obj );
       extract_obj( obj );
        SET_BIT (victim->pcdata->cyber, CYBER_REACTOR );
    }
    else if (obj->item_type == ITEM_MINDCYBER)
    {
        if (IS_SET(victim->pcdata->cyber,CYBER_MIND))
        {
            send_to_char( "&RThey seem to already have that cybernetic part installed.\n\r", ch);
             return;
        }
       checkcyber = TRUE;
       separate_obj( obj );
       obj_from_char( obj );
       extract_obj( obj );
        SET_BIT (victim->pcdata->cyber, CYBER_MIND );
    }

    else if (obj->item_type == ITEM_STRCYBER)
    {
        if (IS_SET(victim->pcdata->cyber,CYBER_STRENGTH))
        {
            send_to_char( "&RThey seem to already have that cybernetic part installed.\n\r", ch);
             return;
        }
       checkcyber = TRUE;
       separate_obj( obj );
       obj_from_char( obj );
       extract_obj( obj );
        SET_BIT (victim->pcdata->cyber, CYBER_STRENGTH );
    }
    
    send_to_char( "&GYou finish your surgery and sew up your patient.&w\n\r", ch);
    act( AT_PLAIN, "$n finishes $s surgery.", ch,
         NULL, argument , TO_ROOM );

    
         long xpgain;

         /*xpgain = UMIN( obj->cost*100 ,
            ( exp_level(ch->skill_level[MEDICAL_ABILITY]+1) -
              exp_level(ch->skill_level[MEDICAL_ABILITY]) ) );*/
	 xpgain = 3000;
         gain_exp(ch, xpgain, MEDICAL_ABILITY);
         ch_printf( ch , "You gain %d medical experience.", xpgain );
    
        learn_from_success( ch, gsn_surgery );
  }   
}
[Go to top] top

Posted by Zeno   USA  (2,871 posts)  [Biography] bio
Date Reply #6 on Sat 25 Mar 2006 03:19 AM (UTC)
Message
Print victim, then victim->pcdata, then victim->pcdata->cyber for me.

Zeno McDohl,
Owner of Bleached InuYasha Galaxy
http://www.biyg.org
[Go to top] top

Posted by Jason   (109 posts)  [Biography] bio
Date Reply #7 on Sat 25 Mar 2006 03:30 AM (UTC)
Message
(gdb) p victim
$2 = (CHAR_DATA *) 0x812293d
(gdb) p victim->pcdata
$3 = (PC_DATA *) 0xffeff085
(gdb) p victim->pcdata->cyber
Cannot access memory at address 0xffeff0cd

hmmmm why is cyber null here?
[Go to top] top

Posted by Zeno   USA  (2,871 posts)  [Biography] bio
Date Reply #8 on Sat 25 Mar 2006 04:35 AM (UTC)
Message
Crashing when you added the skill and timer? That doesn't seem to be the problem. Check to make sure the cyber field is coded correctly.

Zeno McDohl,
Owner of Bleached InuYasha Galaxy
http://www.biyg.org
[Go to top] top

Posted by Jason   (109 posts)  [Biography] bio
Date Reply #9 on Sat 25 Mar 2006 04:41 AM (UTC)
Message
it has to be... i mean it worked just fine before i made it a skill with a timer... i tested it untill it did work
[Go to top] top

Posted by Zeno   USA  (2,871 posts)  [Biography] bio
Date Reply #10 on Sat 25 Mar 2006 04:47 AM (UTC)
Message
Well then paste the working code here, and I'll compare it to the non-working.

Zeno McDohl,
Owner of Bleached InuYasha Galaxy
http://www.biyg.org
[Go to top] top

Posted by Jason   (109 posts)  [Biography] bio
Date Reply #11 on Sat 25 Mar 2006 05:12 AM (UTC)
Message

void do_installcybernetic( CHAR_DATA * ch, char *argument )
{
    CHAR_DATA *victim;
    char arg1[MAX_INPUT_LENGTH];
    char arg2[MAX_INPUT_LENGTH];
    OBJ_DATA *holdscalpel;
    OBJ_DATA *obj;
    bool checkcyber;
    checkcyber = FALSE;

    argument = one_argument( argument, arg1 );
    argument = one_argument( argument, arg2 );

    if ( arg1[0] == '\0' )
    {
	send_to_char( "Install what?\n\r", ch );
	return;
    }

    if ( arg2[0] == '\0' )
    {
	send_to_char( "In who?\n\r", ch );
	return;
    }
    if( IS_NPC( ch ) )
      return;

    if( ( victim = get_char_room( ch, arg2 ) ) == NULL )
    {
      send_to_char( "They aren't here.\n\r", ch );
      return;
    }

    if( IS_NPC( victim ) )
    {
      send_to_char( "You can't install cybernetic parts in NPC's!\n\r", ch );
      return;
    }

    if( IS_IMMORTAL( victim ) )
    {
      send_to_char( "Don't try to install cybernetic parts on immortals.\n\r", ch );
      return;
    }

    if( ch == victim )
    {
      send_to_char( "You can't install cybernetics yourself!\n\r", ch );
      return;
    }
	holdscalpel = get_eq_char ( ch, WEAR_HOLD );
      if( holdscalpel && !( holdscalpel->item_type == ITEM_SCALPEL ) )
	holdscalpel = NULL;

    if( !holdscalpel )
    {
      send_to_char( "You need to be holding a scalpel to preform this surgery.\n\r", ch );
      return;
    }

/*    if (ch->pcdata->maxcybers == ch->pcdata->cybers )
    {
	send_to_char( "This person can't take any more cybernetics and stay human\n\r", ch );
	return;
    }*/


     for ( obj = ch->last_carrying; obj; obj = obj->prev_content )     
     {
       if (obj->item_type == ITEM_EYECYBER || obj->item_type == ITEM_COMMCYBER ||
	   obj->item_type == ITEM_LEGCYBER || obj->item_type == ITEM_CHESTCYBER ||
	   obj->item_type == ITEM_REFLEXCYBER || obj->item_type == ITEM_MINDCYBER ||
	   obj->item_type == ITEM_STRCYBER || obj->item_type == ITEM_REACTORCYBER)
	     checkcyber = TRUE;
     }
	if ( !checkcyber )
        {
          send_to_char( "&RYou don't seem  to have a cybernetic part right now.\n\r", ch);
          return;
        }

	if ( !xIS_SET(ch->in_room->room_flags, ROOM_OPERATINGROOM) )
	{
	    send_to_char ("&R You need to be in an operating room to do this proceedure.\n\r", ch );
	    return;
	}
     if ( ms_find_obj(ch) )
	return;

    obj = get_obj_carry( ch, arg1 );
    if (obj->item_type == ITEM_COMMCYBER)
    {
       if (IS_SET(victim->pcdata->cyber, CYBER_COMM))
       {
          send_to_char( "&RThey seem to already have that cybernetic part installed.\n\r", ch);
          return;
       }
       checkcyber = TRUE;
       separate_obj( obj );
       obj_from_char( obj );
       extract_obj( obj );
       SET_BIT (victim->pcdata->cyber, CYBER_COMM );
    }

    else if (obj->item_type == ITEM_EYECYBER)
    {
        if (IS_SET(victim->pcdata->cyber,CYBER_EYES))
        {
            send_to_char( "&RThey seem to already have that cybernetic part installed.\n\r", ch);
            return;
        }
        SET_BIT (victim->pcdata->cyber, CYBER_EYES );
        victim->affected_by   = AFF_INFRARED;
    }
    else if (obj->item_type == ITEM_LEGCYBER)
    {
        if (IS_SET(victim->pcdata->cyber,CYBER_LEGS))
        {
            send_to_char( "&RThey seem to already have that cybernetic part installed.\n\r", ch);
             return;
        }
       checkcyber = TRUE;
       separate_obj( obj );
       obj_from_char( obj );
       extract_obj( obj );
        SET_BIT (victim->pcdata->cyber, CYBER_LEGS );
        victim->max_move += number_range ( 200 , 500 );
    }
    else if (obj->item_type == ITEM_CHESTCYBER)
    {
        if (IS_SET(victim->pcdata->cyber,CYBER_CHEST))
        {
            send_to_char( "&RThey seem to already have that cybernetic part installed.\n\r", ch);
             return;
        }
       checkcyber = TRUE;
       separate_obj( obj );
       obj_from_char( obj );
       extract_obj( obj );
        SET_BIT (victim->pcdata->cyber, CYBER_CHEST );
    }
    else if (obj->item_type == ITEM_REFLEXCYBER)
    {
        if (IS_SET(victim->pcdata->cyber,CYBER_REFLEXES))
        {
            send_to_char( "&RThey seem to already have that cybernetic part installed.\n\r", ch);
             return;
        }
       checkcyber = TRUE;
       separate_obj( obj );
       obj_from_char( obj );
       extract_obj( obj );
        SET_BIT (victim->pcdata->cyber, CYBER_REFLEXES );
    }
    else if (obj->item_type == ITEM_REACTORCYBER)
    {
        if (IS_SET(victim->pcdata->cyber,CYBER_REACTOR))
        {
            send_to_char( "&RThey seem to already have that cybernetic part installed.\n\r", ch);
             return;
        }
       checkcyber = TRUE;
       separate_obj( obj );
       obj_from_char( obj );
       extract_obj( obj );
        SET_BIT (victim->pcdata->cyber, CYBER_REACTOR );
    }
    else if (obj->item_type == ITEM_MINDCYBER)
    {
        if (IS_SET(victim->pcdata->cyber,CYBER_MIND))
        {
            send_to_char( "&RThey seem to already have that cybernetic part installed.\n\r", ch);
             return;
        }
       checkcyber = TRUE;
       separate_obj( obj );
       obj_from_char( obj );
       extract_obj( obj );
        SET_BIT (victim->pcdata->cyber, CYBER_MIND );
    }

    else if (obj->item_type == ITEM_STRCYBER)
    {
        if (IS_SET(victim->pcdata->cyber,CYBER_STRENGTH))
        {
            send_to_char( "&RThey seem to already have that cybernetic part installed.\n\r", ch);
             return;
        }
       checkcyber = TRUE;
       separate_obj( obj );
       obj_from_char( obj );
       extract_obj( obj );
        SET_BIT (victim->pcdata->cyber, CYBER_STRENGTH );
    }
      
}
[Go to top] top

Posted by Zeno   USA  (2,871 posts)  [Biography] bio
Date Reply #12 on Sat 25 Mar 2006 05:21 AM (UTC)
Message
While I look at this, here's an initial question. The code returns if ch is a NPC. But later on you have this:
                chance = IS_NPC(ch) ? ch->top_level : (int) (ch->pcdata->learned[gsn_surgery]);

Why bother to check IS_NPC if you know that it already isn't?

Zeno McDohl,
Owner of Bleached InuYasha Galaxy
http://www.biyg.org
[Go to top] top

Posted by Jason   (109 posts)  [Biography] bio
Date Reply #13 on Sat 25 Mar 2006 05:21 AM (UTC)
Message
and it wasn't the ! infront of the line... I noticed it and fixed it... still it crashed
[Go to top] top

Posted by Dace K   Canada  (169 posts)  [Biography] bio
Date Reply #14 on Sat 25 Mar 2006 06:54 AM (UTC)

Amended on Sat 25 Mar 2006 06:55 AM (UTC) by Dace K

Message
Bleh. You do understand how skill timers work in stock Smaug, right? What it does is call the function, run through until it reaches the add_timer, then when the timer expires, it calls the function again.

Now, the way it keeps from repeating the same thing over and over again is by changing the char's substate to a different value. Then, it calls a switch statement based on substate to see what it should do.

In your default case, you have the checks to allocate the victim and the cybernetic part itself. You also set the first argument to a pointer on the ch (dest_buf), to be stored for later use.

Now, when the timer is called again, it is calling the function with no argument. Since the char's substate is 1, the first thing it sees is to set the new arg1 to the char's dest_buf. This is the argument it used to find the original object, so now the cybernetic part you're installing is defined.

All well and good.

However, arg2 (the victim's name) was NOT stored in the timer. Since the timer executes your function simply as installcybernetic, rather than something like installcybernetic eye simon, therefore there is no pointer allocated to the victim.

In short, what you'll need to do is assign the victim's name (or char_data) to a pointer on the installer, such as ch->installing. (NOT pcdata->installing, as you seem to have this useable for NPCs). Then, you'll need to save and reload this much as you've done for the obj (dest_buf/arg1), then perform another get_char_room on the vict to make sure he hasn't wandered off/been killed/e.t.c, to prevent another crash.

Cheers! :)

ASJ Games - .Dimension 2, Resident Evil, and snippets - oh my!
http://asj.mudmagic.com

Drop by the area archives and find something for your mud. http://areaarchives.servegame.com
[Go to top] top

The dates and times for posts above are shown in Universal Co-ordinated Time (UTC).

To show them in your local time you can join the forum, and then set the 'time correction' field in your profile to the number of hours difference between your location and UTC time.


42,654 views.

This is page 1, subject is 2 pages long: 1 2  [Next page]

It is now over 60 days since the last post. This thread is closed.     [Refresh] Refresh page

Go to topic:           Search the forum


[Go to top] top

Quick links: MUSHclient. MUSHclient help. Forum shortcuts. Posting templates. Lua modules. Lua documentation.

Information and images on this site are licensed under the Creative Commons Attribution 3.0 Australia License unless stated otherwise.

[Home]


Written by Nick Gammon - 5K   profile for Nick Gammon on Stack Exchange, a network of free, community-driven Q&A sites   Marriage equality

Comments to: Gammon Software support
[RH click to get RSS URL] Forum RSS feed ( https://gammon.com.au/rss/forum.xml )

[Best viewed with any browser - 2K]    [Hosted at HostDash]