05.03.2011, 15:38
Hi all,i say it now my english is not very good,so sory for that .
I Really ned for someone make a simple license system with checkpoints.Could somebody show where to download it or make it pls.
this is my command of givelic
Vairavimo means - Driving i need to someone do driving example with license if someone sit in the car it's automatic take 2.000 from player and you must to go to the checkpoints when you go to the checpoints you car will respawn and it will say : Congratz,you have passed the driving test. Pls someone help me : (
I Really ned for someone make a simple license system with checkpoints.Could somebody show where to download it or make it pls.
this is my command of givelic
Vairavimo means - Driving i need to someone do driving example with license if someone sit in the car it's automatic take 2.000 from player and you must to go to the checkpoints when you go to the checpoints you car will respawn and it will say : Congratz,you have passed the driving test. Pls someone help me : (
Код:
COMMAND:duotilic( playerid, params[ ] ) { if ( PlayerInfo[ playerid ][ pFaction ] == 3 ) { new id, result[ 128 ], price; if ( sscanf( params, "us[128]d", id, result, price ) ) { SendUsage( playerid, "/duotilic [ћaidėjo id/dalis vardo] [tipas] [kaina]" ); SendClientMessage( playerid, COLOR_WHITE, "GALIMI TIPAI: motociklo, vairavimo, skraidymo, valties, ginklo." ); } else if ( id == INVALID_PLAYER_ID ) SendClientMessage( playerid, COLOR_GREY, " ID nerastas !" ); else if ( !aLogged[ id ] ) SendClientMessage( playerid, COLOR_GREY, " Ћaidėjas yra neprisijungęs." ); else if ( !IsPlayerToPlayer( 5.0, playerid, id ) ) SendClientMessage( playerid, COLOR_GREY, " Ћaidėjas nėra љalia tavęs." ); else if ( price < 999 ) SendClientMessage( playerid, COLOR_GREY, " Kaina turi būti daugiau nei $999." ); else { new type; if ( !strcmp( result, "motociklo", true ) && strlen( result ) == 9 ) type = 1; else if ( !strcmp( result, "vairavimo", true ) && strlen( result ) == 9 ) type = 2; else if ( !strcmp( result, "skraidymo", true ) && strlen( result ) == 9 ) type = 3; else if ( !strcmp( result, "valties", true ) && strlen( result ) == 7 ) type = 4; else if ( !strcmp( result, "ginklo", true ) && strlen( result ) == 6 ) { if ( PlayerInfo[ playerid ][ pFRank ] < 6 ) return SendClientMessage( playerid, COLOR_GREY, " Jūsų rangas permaћas, kad galėtumėte duoti љią licenziją." ); type = 5; } else return SendClientMessage( playerid, COLOR_GREY, " Įraљėte blogą tipo pavadinimą." ); PlaceOfferForPlayer( id, LICENSE_OFFER, playerid, price, type ); new string[ 42 ]; format ( string, 41, " Licenzijos tipas: %s licenzija.", result ); SendClientMessage( id, COLOR_WHITE, string ); } } else SendClientMessage( playerid, COLOR_GREY, " Jūs neesate instruktorius." ); return true; }