soul_poem
Vars | |
message_list | What messages has the user received? |
---|---|
proximity_datum | The datum that is being used to receive messages |
receiving_data | Is the NIFSoft receiving data? |
transmitted_identifier | What ckey is being used by the owner? This is mostly here so that messages can't get spammed |
transmitted_message | What message is being sent to other users? |
transmitted_name | What username is being sent out? |
transmitting_data | Is the NIFSoft transmitting data? |
Procs | |
add_message | Adds a message to the message_list of the parent NIFSoft based off the sender_identifier, received_name, and received_message. |
remove_message | Removes the message_to_remove from the message_list, If the message cannot be found the proc will return FALSE, otherwise it will delete the message_to_remove and return TRUE. |
send_message | Attempts to send a message to the target_nifsoft, if it exists. Returns FALSE if the message fails to send. |
Var Details
message_list
What messages has the user received?
proximity_datum
The datum that is being used to receive messages
receiving_data
Is the NIFSoft receiving data?
transmitted_identifier
What ckey is being used by the owner? This is mostly here so that messages can't get spammed
transmitted_message
What message is being sent to other users?
transmitted_name
What username is being sent out?
transmitting_data
Is the NIFSoft transmitting data?
Proc Details
add_message
Adds a message to the message_list of the parent NIFSoft based off the sender_identifier, received_name, and received_message.
- sender_identifier - This variable is used to determine the identity of the sender. This is mostly just here so that the same person can't send multiple messages.
- received_name - What name is attached to the associated message?
- received_message - The contents of the added message.
remove_message
Removes the message_to_remove from the message_list, If the message cannot be found the proc will return FALSE, otherwise it will delete the message_to_remove and return TRUE.
send_message
Attempts to send a message to the target_nifsoft, if it exists. Returns FALSE if the message fails to send.