Jump to content


YopYop

Member Since 10 May 2005
Offline Last Active Feb 08 2011 09:42 AM

Posts I've Made

In Topic: An Action Each Hour

05 October 2007 - 01:06 AM

well, first off, there are 30 steps i think in an alarm for 1 second. Figure out how many seconds there are in an hour and times it by 30, thats the duration of the alarm. And then at the end of that alarm, set it so that it will perform the events u want it to, and then reset that same alarm.

<{POST_SNAPBACK}>

well, that's a lazy method, wich can slow a game, and will not be executed at 1:00 AM exactly for exemple.


if current_minute=00
{
//do something
}

Better solution, however this will be executed more than 1 time <_<
So maybe :
if current_minute=00 and current_second=0
{
...
}
But that will be executed 30 times...

In Topic: Professional Menu Scripts!

01 October 2007 - 10:04 PM

Nice :-)
And what about a get_string function ? ;-)

In Topic: Security Script Update V2 [new Script]

01 October 2007 - 09:11 PM

If i'm not wrong, with gm7 exe, a memory editor can only change objects scripts, but you can't change any script wich are on the script folder of gm no ?

In Topic: Dll : Get Pc Langage

03 April 2007 - 10:08 PM

Cool !
This can be usefull :blink:
1 dll each day now ? (lol)

In Topic: Problem With Making A Dll

26 March 2007 - 12:43 PM

like your old string_split function !
yes, good idea, thanx...

Would you be able to show me a string_split function in C pleaze ?