|
Call command for public ships on SWR
|
Reply to this subject
Start a new subject
 
Refresh page
| Posted by |
Jason
(102 posts) bio
|
| Date |
Tue 26 Jun 2012 10:21 PM (UTC) [ quote
] |
| Message |
Ok, here's what I got. I'm trying to make a call command to call a public ship to a landing pad.. right now i am in testing phases and i know this code is incomplete as far as checking room flags...
Here is the code.
void do_call( CHAR_DATA *ch, char * argument)
{
SHIP_DATA *ship;
for ( ship = first_ship; ship; ship = ship->next )
{
if ( !str_cmp( ship->owner , "Public" ) && !IS_SET(ship->flags, SHIP_SIMULATOR ) )
{
if (ship->class > CAPITAL_SHIP)
continue;
if (ship->type == MOB_SHIP)
continue;
transship(ship, ch->in_room->vnum);
}
}
}
Now what it is doing is calling all the public ships into the room, I want it to call a random public ship to the room, or call them in order each time the command is issued. I'm not sure if there is a function that will pull one from the list alone. any help will be apprieciated. | top |
|
| Posted by |
ThomasWatts
USA (66 posts) bio
|
| Date |
Reply #1 on Thu 28 Jun 2012 02:30 AM (UTC) [ quote
] |
| Message |
| Either change your for loop check from just 'ship' to something more appropriate, or break from the loop once you a acquire an unused ship. | 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.
590 views.
Reply to this subject
Start a new subject
 
Refresh page
top
Comments to:
Gammon Software support
Forum RSS feed ( http://www.gammon.com.au/rss/forum.xml )