[Looking for something] - 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: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: [Looking for something] (
/showthread.php?tid=111927)
[Looking for something] -
Doppeyy - 04.12.2009
Hi people i had a program called SAMP Command Creator (or something)
But i formatted my extern harddrive and now i lost it.
Does anyone of you know where to find it.
And YES i used the search option before posting.
/Artix
Re: [Looking for something] -
Backwardsman97 - 04.12.2009
What kind of commands did it create? Creating commands is very simple. Wouldn't you just want to learn how to yourself?
Re: [Looking for something] -
Doppeyy - 04.12.2009
Quote:
Originally Posted by Backwardsman97
What kind of commands did it create? Creating commands is very simple. Wouldn't you just want to learn how to yourself?
|
I dont know why but every time i create a command in 0.3 it shows no errors what so ever.
BUT if i go into my server and try to use the command it doesnt do anything.
It does not show : Server unknown command or what so ever.
It just does nothing. I dont know why :S So maybey the program could help me now.
/Artix
Re: [Looking for something] -
martyz-lithuania - 04.12.2009
Show me your command
Re: [Looking for something] -
Backwardsman97 - 04.12.2009
pawn Код:
if(!strcmp(cmdtext,"/command",true))//use strcmp to compare the string cmdtext to the string /command
{
print("You've typed /command");
return 1;
}