Search Results
Is it possible to make use of several colours in a dynamic 3D text label? The following doesn't seem to work: pawn Код: CreateDynamic3DTextLabel("Your {COLOR_YELLOW}3DTextLabel", COLOR_WHITE, ......
89
Well, thanks, but is there a way to do it with a function as shown above?
186
So there's no way I can use this without a macro?
186
Why doesn't this work? Can I set the size of a string with a variable somehow? It can be useful in a function. pawn Код: someFunction(size) {    new string[size];} Код: error 008: must be ...
186
Quote: A player update tells you, if the player has synced its new health with the server. So once setting a player's health, with the upcoming call of OnPlayerUpdate is should be...
137
"wait for it to sync and then monitor it for changes" How would you wait for it to 'sync'?
137
As most of you know GetPlayerHealth() is called before SetPlayerHealth() even though it should be called before GetPlayerHealth() in the script. So my question is in order to realise a nice Anti-Hack...
137
Good evening, I wonder if there is a way to make the following object solid and doublesided, so that you can't walk through the object and see everything from every viewing angle.
93
Quote: Originally Posted by Georgi166 Make the engine be off, then turn it on after the function. How do you mean that? Turning the engine off and immediately back on would fix it?
181
Quick question .. locking a vehicle avoids persons who would like to enter a the vehicle as a driver from moving towards it. I am in need of the same effect for passengers. Right now I am taking car...
181
Quote: Originally Posted by Nero_3D Sure it doesn't, if you want to achieve something like an dynamic array than I will disappoint you that's not possible A dynamic array would be a vec...
216
Nope, that's not the solution. Same errors given. Quote: Originally Posted by Nero_3D The expression must be constant pawn Код: const size = 5;new array[size]; Works, thanks. But...
216
Hey, I know it's possible, what am I doing wrong here: pawn Код: new size = 5,    arr[size];// error 008: must be a constant expression; assumed zero
216
Quote: Originally Posted by Virtual1ty Yes, the mysql_function_query only puts your query to some queue and awaits for it execution, which is apart from the PAWN VM and runs in its own thr...
85
Hello, I'm using BlueG's MySQL R7 Plugin and have one question left over. It has been mentioned that all queries are now threaded. Does that mean that I can do the following and just keep coding belo...
85
So I will need to create two arrays, one with the names and one with the coordinates?
160
pawn Код: new TestArray[2][5] = {    {"Testing", 244.3659, 305.1818, 999.1484, 1},    {"Testing2", 322.3637, 303.2862, 999.1484, 5}}; Код: (213) : warning 213: tag mismatch (213) : warnin...
160
Alright, that helps already a lot. After studying a lot of what you did in wiki and reading it several times there are still some questions about it: pawn Код: if(down) { // What do you mean with...
98