Search Results
So, this is the compiler output: Код: C:\Users\Gaming\Desktop\SA-MP Pawno\gamemodes\pickup.pwn(8) : error 010: invalid function or declaration Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ...
61
Okay, let me be more specific, I know about variables, strings etc. But my problem is: I have no clue on why and how to put them to use.
106
Hmm, I see.. What exactly do you mean by 'play around'?
106
So, I've watched endless amounts of tutorials on ******* regarding scripting, read almost the whole wiki and forums. But I still cannot properly script! Could someone help me over something like sky...
106
Use this, fix the indentation though. pawn Код: public OnPlayerCommandText(playerid, cmdtext[]){if(strcmp("/compragarage", cmdtext, true) == 0){    new string[128], done;    if(!IsPlayerLogge...
86
Here you go..: https://sampforum.blast.hk/showthread.php?tid=109610
89
Did you just copy a tutorial in the script? Maybe read the tutorial again and type it yourself instead of copying.
174
Loose indentation means that several things are misplaced. Example: pawn Код: public OnGameModeInit(){    return 1;   }//This one is too far out.public OnGameModeInit(){    return 1;}//Whil...
118
It won't compile. But hey, why don't you create your own housing system? It makes your server unique from the others. https://sampforum.blast.hk/showthread.php?tid=179206 Cheers.
292
Replace your public OnPlayerCommandText with this: pawn Код: public OnPlayerCommandText(playerid, cmdtext[]){    return 1;}
236
At first, this isn't strcmp. Have you put this at the top of your script? pawn Код: #include <zcmd>
236
Be more specific. EDIT: Add the 'else' to the tutorial above: pawn Код: CMD:robthis(playerid, params[]){    #pragma unused params // we dont need the params    if(IsPlayerInDynamicCP(playe...
123
Код: C:\Users\Gaming\Desktop\SA-MP Pawno\gamemodes\weasels.pwn(85) : warning 202: number of arguments does not match definition C:\Users\Gaming\Desktop\SA-MP Pawno\gamemodes\weasels.pwn(85) : warn...
149
http://pastebin.com/dQcG37ER This should help you out, best of luck!
123
Send me the .pwn, I'll try to compile it for you.
292
So basically when I type in the OOC command with the text it just shows : [OOC] : (( Hello )). The script doesn't recognize GetPlayerNameEx. Anyways, here's the error: Код: C:\Users\Gaming\Deskto...
149