[FilterScript] Weather Changer By Karan007 - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Filterscripts (
https://sampforum.blast.hk/forumdisplay.php?fid=17)
+--- Thread: [FilterScript] Weather Changer By Karan007 (
/showthread.php?tid=563136)
Weather Changer By Karan007 -
Karan007 - 14.02.2015
~REMOVED~
Re: Weather Changer By Karan007 -
De4dpOol - 14.02.2015
Quote:
Originally Posted by karan007
Hey Guys........Enjoy
|
First of all this is not a FS, these are just commands.
Secondly, It is very poorly scripted. The commands can be made in one command like:
pawn Код:
CMD:weather(playerid,params[])
{
new str[128];
if(!strlen(params)) return SendClientMessage(playerid, -1, "Use /weather [0-20].");
if(strval(params) < 0 || strval(params) > 20) return SendClientMessage(playerid, -1, "Use /weather [0-20].");
format(str, 128, "Your weather has been changed to ID %d.", strval(params));
SendClientMessage(playerid, -1, str);
SetPlayerWeather(playerid, strval(params));
return 1;
}
Anyway not bad for your 2nd FS.
Re: Weather Changer By Karan007 -
Karan007 - 14.02.2015
Quote:
Originally Posted by De4dpOol
First of all this is not a FS, these are just commands.
Secondly, It is very poorly scripted. The commands can be made in one command like:
pawn Код:
CMD:weather(playerid,params[]) { new str[128]; if(!strlen(params)) return SendClientMessage(playerid, -1, "Use /weather [0-20]."); if(strval(params) < 0 || strval(params) > 20) return SendClientMessage(playerid, -1, "Use /weather [0-20]."); format(str, 128, "Your weather has been changed to ID %d.", strval(params)); SendClientMessage(playerid, -1, str); SetPlayerWeather(playerid, strval(params)); return 1; }
Anyway not bad for your 2nd FS.
|
Thanks
.But Sorry I Don't Use ZCMD.
Re: Weather Changer By Karan007 -
Alex Magaсa - 14.02.2015
Good job for your 2nd filterscript.
Simple anyways
!
Re: Weather Changer By Karan007 -
Karan007 - 14.02.2015
Quote:
Originally Posted by Alex Magaсa
Good job for your 2nd filterscript.
Simple anyways !
|
Thanks Bro!
Re: Weather Changer By Karan007 -
Fungi - 14.02.2015
horribly scripted, it isnt even a filterscript
Re: Weather Changer By Karan007 -
Karan007 - 14.02.2015
Quote:
Originally Posted by Fungi
horribly scripted, it isnt even a filterscript
|
Lol? It Is A FilterScript Bro.
Re: Weather Changer By Karan007 -
Skully82 - 14.02.2015
A simple CMD with one Function,Good for 2nd script
Re: Weather Changer By Karan007 -
Karan007 - 14.02.2015
Quote:
Originally Posted by Skully82
A simple CMD with one Function,Good for 2nd script
|
Thanks Soo Much Bro
Re: Weather Changer By Karan007 -
kapilb - 15.02.2015
Great