#1

how to make wanted star go down
Reply
#2

https://sampwiki.blast.hk/wiki/SetPlayerWantedLevel
Reply
#3

no like the wanted star go down after 2 minute
Reply
#4

use SetTimerEx and connect it with function of a wanted star going down. Read More here
Reply
#5

i use timer but how to make the timer go on i mean where to put the timer to make the time go on and how to know the number of star level to go down.
Reply
#6

I don't really understand half of this.

Is this what you want?

Код:
SetTimerEx("WantedDown", 120000, false, "i", playerid);

forward WantedDown(playerid);
public WantedDown(playerid)
{
	SetPlayerWantedLevel(playerid, GetPlayerWantedLevel(playerid)-2);
	return 1;
}
You can trigger the timer from anywhere. For example when player robs a store or something similar to it.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)