bigben07
Active member
- Joined
- Nov 10, 2013
- Messages
- 140
- Reaction score
- 0
Ok, my friend wants me to make a cleo that does
/me [I can edit this area right here]
/do [the in game Hour, Minute, and if possible, second with the date and year]
/time.
This is all I currently have
I don't know how to grab the hour and minute and date and put it into a samp say_msg. Could someone walk me through this? This is my first cleo.
Do I use this?
00BF: $TIME_HOURS = current_time_hours, $TIME_MINS = current_time_minutes?
If I need to be more descriptive please respond.
/me [I can edit this area right here]
/do [the in game Hour, Minute, and if possible, second with the date and year]
/time.
This is all I currently have
Code:
{$VERSION 3.1.0027}
{$CLEO .cs}
thread 'JohnLemans'
:TIMEOFDAY_O1
wait 0
0AB0: key_pressed 101 //Numpad 5
else_jump @TIMEOFDAY_O1
0AF9: samp say_msg ""
wait 0
jump @TIMEOFDAY_O1
I don't know how to grab the hour and minute and date and put it into a samp say_msg. Could someone walk me through this? This is my first cleo.
Do I use this?
00BF: $TIME_HOURS = current_time_hours, $TIME_MINS = current_time_minutes?
If I need to be more descriptive please respond.