Notice: Any messages purporting to come from this site telling you that your password has expired, or that you need to verify your details, confirm your email, resolve issues, making threats, or asking for money, are
spam. We do not email users with any such messages. If you have lost your password you can obtain a new one by using the
password reset link.
Due to spam on this forum, all posts now need moderator approval.
Entire forum
➜ SMAUG
➜ SMAUG coding
➜ Call command for public ships on SWR
Call command for public ships on SWR
|
It is now over 60 days since the last post. This thread is closed.
Refresh page
Posted by
| Jason
(109 posts) Bio
|
Date
| Tue 26 Jun 2012 10:21 PM (UTC) |
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) |
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.
10,178 views.
It is now over 60 days since the last post. This thread is closed.
Refresh page
top