Jump to content

N1kS

Membru
  • Posts

    10
  • Joined

  • Last visited

Everything posted by N1kS

  1. Salutare prieteni, sunt in cautarea unei echipe pentru dezvoltarea unui proiect RolePlay. De cheltuieli, site, forum, gamemode ma ocup eu. Discord: N1kS#8680
  2. Vreau sa dezvolt un proiect Role Play, sa investesc o suma buna de bani dar stau la dubii, nu stiu in ce directie sa o apuc. Intrebarea este : Joaca oare comunitatea romana Role Play, sau totusi mai bine aleg comunitatea engleza ?
  3. Salutare, am nevoie de un partener care ma va ajuta in dezvoltarea unui proiect Role Play. Mai multe detalii va ofer pe Discord: N1kS#8680
  4. N1kS

    Vand mapping

    Salut, vand mapping: 1. San Fierro Army. 2. Alegerea skin'ului dupa inregistrare. Ma poti gasi pe Discord: N1kS#8680
  5. Interesant, accepta cererea pe discord. Vreau sa aflu mai multe detalii.
  6. Salutare prieteni, am decis sa vă arăt o modalitate foarte simplă pentru a vă teleporta către jucatori prin TAB. Sper să fie de folos! Pentru început adăugăm în public OnPlayerClickPlayer(playerid, clickedplayerid, source): new String[64], Name[MAX_PLAYER_NAME]; GetPlayerName(playerid, Name, sizeof(Name)); SetPVarInt(clickedplayerid, "Teleport", playerid); format(String, sizeof(String), "%s vrea sa se teleporteze catre tine", Name); ShowPlayerDialog(clickedplayerid, 1, DIALOG_STYLE_MSGBOX, "Teleport", String, "Da", "Nu"); Și rămâne să adăugăm în public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[]): //if(dialogid == 1) //switch(dialogid) //{ case 1: { if(!response) return 1; new Float: Coord[3]; GetPlayerPos(playerid, Coord[0], Coord[1], Coord[2]); SetPlayerPos(GetPVarInt(playerid,"Teleport"), Coord[0], Coord[1], Coord[2]); DeletePVar(playerid, "Teleport"); } În final primim: public OnPlayerClickPlayer(playerid, clickedplayerid, source) { new String[54], Name[MAX_PLAYER_NAME]; GetPlayerName(playerid, Name, sizeof(Name)); SetPVarInt(clickedplayerid, "Teleport", playerid); format(String, sizeof(String), "%s vrea sa se teleporteze catre tine", Name); ShowPlayerDialog(clickedplayerid, 1, DIALOG_STYLE_MSGBOX, "Teleport", String, "Da", "Nu"); return 1; } public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[]) { switch(dialogid) { case 1: { if(!response) return 1; new Float: Coord[3]; GetPlayerPos(playerid, Coord[0], Coord[1], Coord[2]); SetPlayerPos(GetPVarInt(playerid,"Teleport"), Coord[0], Coord[1], Coord[2]); DeletePVar(playerid, "Teleport"); } } return 1; }
  7. Dacă te apuci serios, cred că o să reușești!
×
×
  • 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.