Jump to content

DarkyTheAngel

Membru
  • Posts

    1,005
  • Joined

  • Last visited

    Never

Everything posted by DarkyTheAngel

  1. Eu la 70 de grade faceam omleta pe laptop .
  2. Am observat chestia asa.Presupun ca este vreo eroare de la baza de date dar daca folosesti proxy va functiona.
  3. Acele diacritice si caractere speciale nu pot fi decodate, punct.
  4. Ciudat.Chiar acum faceam un topic unde sa cer cateva pareri despre creatile mele.In fine, mai incearca sa inveti functile din Photoshop si cum sa le combini, cu ce sa lucrezi si etc.
  5. Pe website-ul asta, trebuie sa joci jocuri ca sa castigi puncte?
  6. Defapt, PrizeRebel este foarte cunoscut in USA pentru premile gratuite (este foarte profitabil).Foarte multa lume din USA foloseste acel website si chiar foarte multi castiga. 900 puncte = Amazon Card $10 = $10 in contul de pe amazon.com
  7. Adica tragea "tzepe" oamenilor care il contactau in legatura cu scriptingul.
  8. Nu te-ai exprimat corect.Probabil vrei sa spui ca vrei o imagine cu fundal transparent care poate fi pusa pe orice alta imagine.Aia se numeste "render".
  9. A vrut sa spuna ca nu exista tag-ul < code > < / code > si sa te uiti la sursa unui articol scris de el (http://wiki.sa-mp.ro/index.php/AddStaticVehicle).
  10. Tu crezi ca exista doar modul RPG in SA:MP?
  11. public OnGameModeInit ( ) { DisableInteriorEnterExits ( ) ; // Adaugi aceasta linie la callback-ul OnGameModeInit. return ( 1 ) ; }
  12. Salut.Acum cateva zile mi-am recativat contul pe website-ul PrizeRebel (pentru cine nu stie, sa caute pe google) cu speranta ca voi castiga un Ultimate Game Card (____,,____).Folosesc proxy pentru a-mi schimba IP-ul (pe Romania nu sunt "survye"-uri) si primesc diferite oferte din alte tari.Problema se pune in felul urmator, am completat o multime de oferte si nu am primit punctele promise.Pana acum ar fi trebuit sa am vreo 500 - 600 puncte iar eu am decat 80.Tin sa mentionez ca doar cateva teste ("survye"-uri) mi-au dat punctele promise.Acum, stie cineva ce-i de facut? EDIT: Nu am facut reclama website-ului PrizeRebel.
  13. Sincer, m-as baga si eu.Mi-ar placea sa postez pe wiki.
  14. Cand m-am uitat la autorul topicului am crezut ca e o gluma dar se pare ca nu e.Oricum, felicitari Rock.
  15. Daca o sa te mai lauzi mult, nu o sa te considere nimeni un scripter "grozav". Fiecare dintre noi avem dreptul la o opinie, nu? Cat despre server, nu stiu cum e, nu l-am descarcat sa vad cum este aranjat si ce contine.O sa arunc o privire peste el si o sa revin cu o editare a postului.
  16. http://wiki.sa-mp.com/wiki/TextDrawCreate http://wiki.sa-mp.com/wiki/InterpolateCameraPos
  17. [pawn] if ( strcmp ( cmd , "/aod" , true ) == 0 ) { if ( PlayerInfo [ playerid ] [ pAdmin ] >= 1 ) { new year , month , day hour , minute , sec ; getdate ( year , month , day ) ; gettime ( hour , minute , sec ) ; GetPlayerName ( playerid , sendername , sizeof ( sendername ) ) ; if ( AdminDuty [ playerid ] == 1 ) { format ( string , sizeof ( string ) , "[Admin Info] %s [iD:%d] is no longer on duty as an admin. (%02d-%02d-%d), (%02d:%02d:%02d)" , sendername , playerid , day , month , year , hour , minute , sec ) ; SendClientMessageToAll ( 0xC0C0C0FF , string ) ; AdminDuty [ playerid ] = 0 ; SetPlayerHealth ( playerid , 100 ) ; SetPlayerArmour ( playerid , 0 ) ; SetPlayerToTeamColor ( playerid ) ; } else { format ( string , sizeof ( string ) , "[Admin Info] %s [iD:%d] is now on duty as an admin.Please /w him if you need help. (%02d-%02d-%d), (%02d:%02d:%02d)" , sendername , playerid , day , month , year , hour , minute , sec ) ; SendClientMessageToAll ( 0x8080FFFF , string ) ; AdminDuty [ playerid ] = 1 ; SetPlayerHealth ( playerid , 99999 ) ; SetPlayerArmour ( playerid , 99999 ) ; SetPlayerColor ( playerid , 0x8080FFFF ) ; for ( new i = 0 ; i < MAX_PLAYERS ; i ++ ) { if ( IsPlayerConnected ( i ) ) { SetPlayerMarkerForPlayer ( i , playerid , 0x8080FFFF ) ; } } } } else { SendClientMessage ( playerid , COLOR_WHITE1 , " Your not an admin !" ) ; } return ( 1 ) ; }[/pawn]
  18. Variabila "mod" exista de mai multe ori in script iar primul avertizment iti spune ca, callback-ul OnPlayerEnterRaceCheckpoint este de mai multe ori.Incearca sa faci update la "streamer", daca nici asta nu rezolva primul avertizment, cauta callback-ul in plus si uneste-l cu celalalt sau sterge-l.
  19. "Shoot yourself." EDIT: Vezi ca ai postat in sectiunea de "off-topic", nu in cea care tine de suport pentru SA:MP.
  20. DarkyTheAngel

    Ajutor

    Nu te putem ajuta deoarece nu ai explicat concret. http://www.sa-mp.ro/forum/index.php?topic=24269.msg132011#msg132011
  21. [pawn]public CustomPickups() { new Float:oldposx, Float:oldposy, Float:oldposz; new string[128]; for(new i = 0; i < MAX_PLAYERS; i++) { if(IsPlayerConnected(i)) { GetPlayerPos(i, oldposx, oldposy, oldposz); new tmpcar = GetPlayerVehicleID(i); if(oldposx!=0.0 && oldposy!=0.0 && oldposz!=0.0) { for(new h = 0; h < sizeof(SBizzInfo); h++) { if(IsATruck(tmpcar) && PlayerToPoint(10.0, i, SBizzInfo[h][sbEntranceX], SBizzInfo[h][sbEntranceY], SBizzInfo[h][sbEntranceZ])) { format(string, sizeof(string), "~w~%s~n~~r~Products Required~w~: %d~n~~y~Price per Product: ~w~: $%d~n~~g~Funds: ~w~: $%d",SBizzInfo[h][sbMessage],(SBizzInfo[h][sbMaxProducts]-SBizzInfo[h][sbProducts]),SBizzInfo[h][sbPriceProd],SBizzInfo[h][sbTill]); GameTextForPlayer(i, string, 5000, 3); return 1; } if(PlayerToPoint(2.0, i, SBizzInfo[h][sbEntranceX], SBizzInfo[h][sbEntranceY], SBizzInfo[h][sbEntranceZ])) { if(SBizzInfo[h][sbOwned] == 1) { format(string, sizeof(string), "~w~%s~w~~n~Owner : %s~n~Extortion by : %s~n~Entrance Fee : ~g~$%d ~n~~w~to enter type /enter",SBizzInfo[h][sbMessage],SBizzInfo[h][sbOwner],SBizzInfo[h][sbExtortion],SBizzInfo[h][sbEntranceCost]); } else { format(string, sizeof(string), "~w~%s~w~~n~This Business is for sale~n~Cost: ~g~$%d ~w~Level : %d ~n~to buy this Business type /buybiz",SBizzInfo[h][sbMessage],SBizzInfo[h][sbBuyPrice],SBizzInfo[h][sbLevelNeeded]); } GameTextForPlayer(i, string, 5000, 3); return 1; } } for(new h = 0; h < sizeof(BizzInfo); h++) { if(IsATruck(tmpcar) && PlayerToPoint(10.0, i, BizzInfo[h][bEntranceX], BizzInfo[h][bEntranceY], BizzInfo[h][bEntranceZ])) { format(string, sizeof(string), "~w~%s~n~~r~Products Required~w~: %d~n~~y~Price per Product: ~w~: $%d~n~~g~Funds: ~w~: $%d",BizzInfo[h][bMessage],(BizzInfo[h][bMaxProducts]-BizzInfo[h][bProducts]),BizzInfo[h][bPriceProd],BizzInfo[h][bTill]); GameTextForPlayer(i, string, 5000, 3); return 1; } if(PlayerToPoint(2.0, i, BizzInfo[h][bEntranceX], BizzInfo[h][bEntranceY], BizzInfo[h][bEntranceZ])) { if(BizzInfo[h][bOwned] == 1) { format(string, sizeof(string), "~w~%s~w~~n~Owner : %s~n~Extortion by : %s~n~Entrance Fee : ~g~$%d ~n~~w~to enter type /enter",BizzInfo[h][bMessage],BizzInfo[h][bOwner],BizzInfo[h][bExtortion],BizzInfo[h][bEntranceCost]); } else { format(string, sizeof(string), "~w~%s~w~~n~This Business is for sale~n~Cost: ~g~$%d ~w~Level : %d ~n~to buy this Business type /buybiz",BizzInfo[h][bMessage],BizzInfo[h][bBuyPrice],BizzInfo[h][bLevelNeeded]); } GameTextForPlayer(i, string, 5000, 3); return 1; } } } } } return ( 1 ) ; }[/pawn]
  22. 15856: [pawn]Create3DTextLabel("{6EF83C}U.S.T. HQ \n{FFFFFF}Apasa [F] sau [Enter]",0xE60000FF,2495.9592,447.1134,1397.2653,1084.3047+1,8,0);[/pawn] 22020: [pawn]forward HBroadCast(color,const string [ ],level);[/pawn] 63846 - 63850: [pawn]forward ResetBan(playerid); forward ResetKick(playerid);[/pawn] 67420: Sterge simbolul PlayerPos. Dupa ce faci toate astea, ar trebui sa mai ai cateva erori sau avertizmente deci posteaza aici.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.