Search Results
I've found some errors in your code, some critical ones... This should word, haven't tested though... PHP код: CMD:changename(playerid, params[]) {     new id[24];    // you forgot...
71
I think he meant the ability to create the interior with custom objects, like 19489 ( the exterior ) and 19490 ( the interior. Then yes, you can. Place exterior object anywhere in the world, then fit...
105
@AK', thanks! That was really helpfull! Now I know that I need IDE, not compiler... And yes, I have problem with special characters, like I mentioned in the first post ( ą, č, ę, ė, į, љ, ų, ū...
250
@AK, thanks for reply. It doesn't really matter if it's IDE or compiler. I've tried Notepad++ but I didn't like it. Not sure why, but it just wasn't looking appealing for me :/
250
Yes, I've scripted ~8k lines in pawno and used lithuanian characters - no problem. Then I decided to change compiler so that it would be easier to find stuff in my code ( I need code folding, auto-com...
250
Hi everybody! Does anyone know, how to get lithuanian characters ( 'ą', 'č', 'ę', 'ė', 'į', 'љ', 'ų', 'ū' ) working in "Scripting Machine" ? I've tried diffrent encoding, diffrent fonts and it...
250
Yeah, thx I would love to hear what you do to make it fit for other resolutions
81
Hello everybody! I have a little problem - when I change resolution all my textdraws goes out of place and get messy.Is there a way to fix it or is there any specific screen resolution to make textdra...
81
Код: { new player1VehID = GetPlayerVehicleID( playerid ), player2VehID; for( new i = 0; i < MAX_PLAYERS; i++ ) { if( IsPlayerConnected( i ) { pl...
171
Код: OnPlayerSpawn( playerid ) { ApplyAnimation( playerid, "CRACK", "NULL", 0, 0, 0, 0, 0, 0 ); } OnPlayerUpdate( playerid ) { new Float:health; GetPlayerHealth( playerid, health ); ...
204
Have you tried to preload that animation ? Код: OnPlayerSpawn( playerid ) { ApplyAnimation( playerid, "CRACK", "NULL", 0, 0, 0, 0, 0, 0 ); }
204
EUREKA! It appears the problem is that I have included <zcmd> but I haven't included <sscanf2>. After including <sscanf2> the problem disappeared.
146
Код: public OnPlayerCommandText( playerid, cmdtext[] ) { if( !strcmp( cmdtext, "/vreaubani", true ) ) // If player typed /vreaubani return GivePlayerMoney( playerid, 500000 ); // ...
225
Ok, I've just found that if I write the same code into my gamemode, it compiles just fine. That function, however, is as include in .pwn file. Does this change anything ? :O
146
Hey guys! I have a little problem: Код: #define STRING_LOGS "Rąstai" CreateItem( 14872, pPos[0], pPos[1], pPos[2], 0.0, 0.0, 0.0, 1, STRING_LOGS ); This crashes the compiler. But when I change it...
146
Banditukas, ne 'cikle', o 'loop' DD (Englis translation: Banditukas, loop, not 'cikle' DD) You can, but that's pointless. It will break the loop after foreach loop has ended. You should use this ins...
75
Or you could just set player pos diffrent than pickup pos that's in the bank For example: Pickup is at X 10, Y 10, Z 10; Player should be at X 11, Y 10, Z 10;
90
Hey everybody. Just wanted to make sure that my tests are correct. When I'm running this code: Код: #include <a_samp> main(){} public OnGameModeInit( ) { new time, i = 0, tMax = 10000000...
142