Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - 3416

#1
Thanks for the help everyone. I got the idea from habi's example :) . And other ones were helpful too.
#2
Quote from: umar4911 on May 15, 2020, 08:24 AMExplain a bit more. You create a pickup using the command. If no one enters the pickup within 5 seconds, it is auto removed. Right na?
Yes!
#3
Hello everyone, hope you have a nice day.
I want the pickup created to be auto-removed in about 5 seconds if it stays idle and nobody touches it.
If a pickup is created like this:
function onPlayerCommand ( player, cmd, text )
if ( cmd == "pick" )
{
CreatePickup(368, player.World, 50, Vector(player.Pos.x, player.Pos.y, player.Pos.z), 255, true);
}


Please give an example, I will try my best to implement.