27.01.2009, 19:45
Am i allowed to change the rule version from 02X (ysf) to 02X
:O
:O
Originally Posted by Meester Proper
So it's possible to change worldtime via ysf (for minutes, samp provides only hours) and won't be banned for that?
|
Originally Posted by Meester Proper
Can't find, can please post the link of this fs?
Greetings MP |
Originally Posted by °ғαιιοцт°
yes it is against the rules.
|
Originally Posted by DiDok
Quote:
|
Originally Posted by °ғαιιοцт°
Quote:
you may not change existing server rules unless they Can also be changed in your script/server.cfg but if you can only change the time itself, like: worldtime - 15:08 you shouldn't make "Monday 15:08" of it, because you also can't do that in your script. if you've added custom server rules, you may do what you want with it. |
new string[256], stunde, minuten, sekunden,jahr,monat,tag; gettime(stunde,minuten,sekunden); getdate(jahr,monat,tag); SetWorldTime(stunde); if(minuten >= 10) { format(string, sizeof(string), "worldtime %d:%d | %d.%d" ,stunde, minuten, tag, monat); SendRconCommand(string); } if(minuten <= 9) { format(string, sizeof(string), "worldtime %d:0%d | %d.%d" ,stunde, minuten, tag, monat); SendRconCommand(string); }
Originally Posted by [NSG
Doerfler ]
Quote:
Code:
new string[256], stunde, minuten, sekunden,jahr,monat,tag; gettime(stunde,minuten,sekunden); getdate(jahr,monat,tag); SetWorldTime(stunde); if(minuten >= 10) { format(string, sizeof(string), "worldtime %d:%d | %d.%d" ,stunde, minuten, tag, monat); SendRconCommand(string); } if(minuten <= 9) { format(string, sizeof(string), "worldtime %d:0%d | %d.%d" ,stunde, minuten, tag, monat); SendRconCommand(string); } |
Originally Posted by Mikep
http://sa-mp.com/service_agreement.txt
Quote:
|
Originally Posted by kingdutch
You can change worldtime to say "Monday 11th of April 16:33" if that's the time your server is at, this might be nice if you have another time scheme as the default 24 hour set (No idea why you'd do that :P) and you have stuff done on say sunday but not on monday. Although you're not allowed to change servertime to say "You suck" because it wouldn't be an accurate representation of the time.
And as said above, just add custom rules and change those then you have no worries. Kye please correct me if there's any wrongs in this post. Thanks ![]() |
Originally Posted by kingdutch
Quote:
|