Custom Functions

Hemos añadido dos funciones custom en el cliente y en el servidor las cuales no se puede cambiar el nombre de las mismas ya que eso afectaría al código principal. Aquí le dejamos un poco más de información para que sepa que añadir dentro de las funciones:
customNotificationFunction(message)El parámetro
messagees el mensaje que aparece en la notificación, eso significa que en el export o evento que utilice su servidor para enseñar las notificaciones, deberá pasarmessagecomo el mensaje.
customPoliceAlert(coords)El parámetro
coordsson las coordenadas desde donde se avisa a la policía, para que así se pueda marcar en el mapa la ubicación del aviso.
customNotificationFunction(src, message)El parámetro
srces el jugador al que se le debe mandar la notificación, de esa manera solo recibirá la notificación el jugador que debe recibirla.El parámetro
messagees el mensaje que aparece en la notificación, eso significa que en el export o evento que utilice su servidor para enseñar las notificaciones, deberá pasarmessagecomo el mensaje.
customInventoryFunction(src, item, quantity)El parámetro
srces el jugador al que se le debe mandar la notificación, de esa manera solo recibirá la notificación el jugador que debe recibirla.El parámetro
itemse refiere al item que se tiene que actualizar en el inventario, ya sea añadir o eliminar.El parámetro
quantityse refiere a la cantidad que tiene que actualizar de ese mismo item, ya sea la cantidad que se haya que quitar o añadir.

We have added two custom functions on the client and on the server, which cannot be renamed as this would affect the main code. Here is a little more information so you know what to add to the functions:
customNotificationFunction(message)The
messageparameter is the message that appears in the notification, that means that in the export or event that your server uses to show the notifications, you must passmessageas the message.
customPoliceAlert(coords)The
coordsparameter is the coordinates from where the police are notified, so that the location of the notice can be marked on the map.
customNotificationFunction(src, message)The
srcparameter is the player to whom the notification should be sent, that way only the player who should receive the notification will receive it.The
messageparameter is the message that appears in the notification, that means that in the export or event that your server uses to show the notifications, you must passmessageas the message.
customInventoryFunction(src, item, quantity)The
srcparameter is the player to whom the notification should be sent, that way only the player who should receive it will receive the notification.The
itemparameter refers to the item that has to be updated in the inventory, whether it is added or removed.The
quantityparameter refers to the quantity that has to be updated of that same item, whether it is the quantity that has to be removed or added.
Last updated