Search Results
Quote: Originally Posted by RuiGy Wiki says 144. Hmm thank you for this information.
208
Depending on your current coding knowledge it can take years before you finally understand the concept, i doubt someone if going to dedicated a "stressful" year of assistance.
83
Quote: Originally Posted by RuiGy pawn Код: if(strcmp(cmd, "/help", true) == 0){    tmp = strtok(cmdtext, idx);    if(strlen(tmp) == 0) return SendClientMessage(playerid, ERROR, "U...
208
Quote: Originally Posted by Shadow_ Actually you have serious issues, he is not saying that his personal server isnt going to restart. He is saying that the MAIN Hosted server isnt going t...
497
1. I am not using GetTickCount() in the tutorial, yet i am using tickcount() 2. If your worried about your server exceeding 24 days(Without a restart), you have serious issues.
497
Introduction: I have decided to start making tutorials on this forum and thought it would be best to start with something simple, yet useful to anybody. Today i am going to show you how to make comm...
497
Код: else return 1; This tells pawno, if the player is not found to be logged in, stop what your doing. Try making the lower code an else statement.
62
I am pretty sure you can read the file, and delete a specific line with a string on it with default functions, which is what your using.
129
Wow, didn't see the loop..its not even used.
178
Found a flaw. Code: if(sscanf(params, "i", Target, Amount)) Try, Code: if(sscanf(params, "ii", Target, Amount)) EDIT: Although i would preffer Code: if(sscanf(params, "ui", Target, Amount)) So ...
178
Use a ini system and name the files with the players name, then simply remove there files when you like.
129
@ JaTochNietDan I am struggling to understand your point, i know using libraries like YSI provides efficient techniques to code your stuff, but were talking about samp script's, the majority of it is...
1,643
Quote: Originally Posted by MP2 Scripting everything 100% efficiently the first time is generally more difficult than coding the basic structure then building on it. Please explain how...
1,643
You can simply add this if statement to the command. Code: if(PlayerInfo[playerid2][AdminLevel] >= 1) return SendClientMessage(playerid, -1, "Error: You cant use this command on that admin");//Yo...
426
Seriously? What is all this "Get the code working, then optimize it?" 1. If your coding a script blindly, you need to start from scratch, because efficiency is structural. 2. Why would you code some...
1,643
For starters, what is your admin variable? We need to know what its named, to be able to make an immune system based off it.
426