Jump to content

CiuChy

Membru
  • Posts

    29
  • Joined

  • Last visited

    Never

CiuChy's Achievements

Contributor

Contributor (5/14)

  • First Post
  • Collaborator
  • Conversation Starter
  • Week One Done
  • One Month Later

Recent Badges

0

Reputation

  1. Pornesc serverul , nici o problema , intru pe el si imi apare asta -> http://img851.imageshack.us/content_round.php?page=done&l=img851/3787/samp162.png&via=mupload
  2. if(strcmp(cmd, "/hundercover", true) == 0) { if(IsPlayerConnected(playerid)) { if(PlayerInfo[playerid][pMember] == 8 || PlayerInfo[playerid][pLeader] == 8) { if(PlayerInfo[playerid][pRank] < 1) { SendClientMessage(playerid, COLOR_GREY, " You need to be Rank 1 or Higher for this action!"); return 1; } new x_nr[256]; x_nr = strtok(cmdtext, idx); if(!strlen(x_nr)) { SendClientMessage(playerid, COLOR_WHITE, "USAGE: /hitmanundercover list then /hitmanundercover [skin id]"); return 1; } if (PlayerToPoint(3,playerid,1105.9569,-292.9882,73.9851) || PlayerInfo[playerid][pLocal] != 255) { if(strcmp(x_nr,"list",true) == 0) { SendClientMessage(playerid, COLOR_YELLOW, "_________Skin_List_________"); SendClientMessage(playerid, COLOR_GRAD1, "1: Agent 2: Staff"); SendClientMessage(playerid, COLOR_GRAD2, "3: Gay man 4: Hustler"); SendClientMessage(playerid, COLOR_GRAD3, "5: Random Baiat 6: Swampy Hippy"); SendClientMessage(playerid, COLOR_GRAD4, "7: Hotel Waiter (Girl) 8: Random Fata"); SendClientMessage(playerid, COLOR_GRAD5, "9: Michelle Cannes 10: Katie Zhan"); SendClientMessage(playerid, COLOR_GRAD6, "0: Go back to Hitman uniform"); return 1; } else if(strcmp(x_nr,"1",true) == 0) { SetPlayerSkin(playerid, 165); SetPlayerColor(playerid, COLOR_WHITE); SendClientMessage(playerid, COLOR_GRAD2, "You are now undercover as a Agent."); return 1; } else if(strcmp(x_nr,"2",true) == 0) { SetPlayerSkin(playerid, 217); SetPlayerColor(playerid, COLOR_WHITE); SendClientMessage(playerid, COLOR_GRAD2, "You are now undercover as a Staff member."); return 1; } else if(strcmp(x_nr,"3",true) == 0) { SetPlayerSkin(playerid, 170); SetPlayerColor(playerid, COLOR_WHITE); SendClientMessage(playerid, COLOR_GRAD2, "You are now undercover as a Gay man."); return 1; } else if(strcmp(x_nr,"4",true) == 0) { SetPlayerSkin(playerid, 21); SetPlayerColor(playerid, COLOR_WHITE); SendClientMessage(playerid, COLOR_GRAD2, "You are now undercover as a Hustler."); return 1; } else if(strcmp(x_nr,"5",true) == 0) { SetPlayerSkin(playerid, 60); SetPlayerColor(playerid, COLOR_WHITE); SendClientMessage(playerid, COLOR_GRAD2, "You are now undercover as a Random guy."); return 1; } else if(strcmp(x_nr,"6",true) == 0) { SetPlayerSkin(playerid, 72); SetPlayerColor(playerid, COLOR_WHITE); SendClientMessage(playerid, COLOR_GRAD2, "You are now undercover as a Swampy Hippy."); return 1; } else if(strcmp(x_nr,"7",true) == 0) { SetPlayerSkin(playerid, 152); SetPlayerColor(playerid, COLOR_WHITE); SendClientMessage(playerid, COLOR_GRAD2, "You are now undercover as a Hotel Waiter."); return 1; } else if(strcmp(x_nr,"8",true) == 0) { SetPlayerSkin(playerid, 233); SetPlayerColor(playerid, COLOR_WHITE); SendClientMessage(playerid, COLOR_GRAD2, "You are now undercover as a Random girl."); return 1; } else if(strcmp(x_nr,"9",true) == 0) { SetPlayerSkin(playerid, 192); SetPlayerColor(playerid, COLOR_WHITE); SendClientMessage(playerid, COLOR_GRAD2, "You are now undercover as Michelle Cannes."); return 1; } else if(strcmp(x_nr,"10",true) == 0) { SetPlayerSkin(playerid, 193); SetPlayerColor(playerid, COLOR_WHITE); SendClientMessage(playerid, COLOR_GRAD2, "You are now undercover as Katie Zahn."); return 1; } else if(strcmp(x_nr,"0",true) == 0) { if(PlayerInfo[playerid][pRank] == 1) { GetPlayerName(playerid, sendername, sizeof(sendername)); format(string,sizeof(string), "* %s don't undercover.", sendername); ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE); SetPlayerSkin(playerid, 165); } else if(PlayerInfo[playerid][pRank] > 1) { GetPlayerName(playerid, sendername, sizeof(sendername)); format(string,sizeof(string), "* %s don't undercover.", sendername); ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE); SetPlayerSkin(playerid, 165); } } } else { SendClientMessage(playerid, COLOR_GRAD2, "For HITMAN: You are not in the Hitman Spawn !"); return 1; } } else { SendClientMessage(playerid, COLOR_WHITE, "You are not a Hitman Assasin"); return 1; } } return 1; } Ai grija , sa citesti inainte REGULAMENTUL !
  3. PERFECT , am rezolvat problema , super TARE ! GJ !
  4. Am si eu 2 probleme , am postat la GF dar degeaba..., nu primesc prea repede raspunsul acolo . #include <a_samp> #define FILTERSCRIPT #define COLOR 0xFF8040FF // <--- Current color is orange. If you wish to add a color of your choice, edit the '0xFF8040FF' text. #if defined FILTERSCRIPT forward msg1(playerid); forward msg2(playerid); forward msg3(playerid); forward msg4(playerid); forward msg5(playerid); forward msg6(playerid); forward msg7(playerid); forward msg8(playerid); forward msg9(playerid); public OnFilterScriptInit() { print("\n---------------------------------------------------------"); print(" Auto-message filterscript by [OTR]Menace modificat CiuChy"); print("-----------------------------------------------------------\n"); SetTimer("msg1",60000/*60000*/,true); // The first timer to start the message cycle. // The messages will start after 1 MINUTE of the gamemode executing, // it will appear every 5 minutes. If you wish to change the time, //edit the '300000' value, and add your own time in MILLISECONDS. return 1; } public OnFilterScriptExit() { return 1; } #else main() { print("\n----------------------------------"); print(" Blank Gamemode by your name here"); print("----------------------------------\n"); } #endif public msg1(playerid) { SendClientMessage(playerid,COLOR,"[INFO] Ai vazut un codat ? /report <ID> <reason>"); SetTimer("msg2",60000,false); return 1; } public msg2(playerid) { SendClientMessage(playerid,COLOR,"[INFO] Vrei sa intri intr-o factiune ? Cerere pe forum"); SetTimer("msg3",60000,false); return 1; } public msg3(playerid) { SendClientMessage(playerid,COLOR,"[INFO] Ai nevoie de ajutor ? /needhelp <mesaj>"); SetTimer("msg4",60000,false); return 1; } public msg4(playerid) { SendClientMessage(playerid,COLOR,"[INFO] Vrei sa iti deschizi capota ? /vcontrol"); SetTimer("msg5",60000,false); return 1; } public msg5(playerid) { SendClientMessage(playerid,COLOR,"[INFO] Vrei sa te pui afk ? /afk"); SetTimer("msg6",60000,false); return 1; } public msg6(playerid) { SendClientMessage(playerid,COLOR,"[INFO] Vrei sa afli mai multe comenzi ? /altecomenzi"); SetTimer("msg7",60000,false); return 1; } public msg8(playerid) { SendClientMessage(playerid,COLOR,"[INFO] Vrei sa cauti o locatie ? /gps"); SetTimer("msg9",60000,false); return 1; } public msg9(playerid) { SendClientMessage(playerid,COLOR,"[INFO] Vrei sa iti pui ochelari ? /glasses "); SetTimer("msg1",60000,false); return 1; } 1.Cine ma poate ajuta in legatura cu aceste MESAJE AUTOMATE .. am o problema , apar cate 2 deodata , apar aiurea , nu apar una dupa alta... nu stiu cum sa fac... Daca ma puteti ajuta sa apara una dupa ALTA , dar mesajele sa se REPETE ! nu sa inceapa cu primul mesaj si sa se termine la ultimul, sa se repete . Multumesc Anticipat ! 2.Am o problema ... am un sistem GPS , pot crea locatiile direct din joc cu /fsave , dar problema este ca nu stiu unde gasesc sa schimb numele , sau sa o sterg daca vreau sa nu mai fie locatia aceea.. sau sa sterg toate locatiile , pe langa acest sistem GPS , langa mai era inca un program SQLite Database Browser, cu acest program cred ca voi gasii acele locatii din GPS sa le pot sterge etc. , dar nu stiu cum sa umblu cu programul , ma puteti ajuta putin ??? Multumesc Anticipat !
  5. Salut , am bagat si eu mapa dau compile , no problem ma duc la casa , si nu imi arata flacari nimica,,, imi arata cateva obiecte aiurea :| am 0.3c
  6. Am bagat si eu acest FS , dar cum fac sa se repete ??? Incepe cu primul si se termina la ultimul... dar nu mai incepe , adica nu se REPETA MESAJELE , ce as putea face ??
  7. OnPlayerEnterRaceCheckPoint Am sters , dar tot la fel imi da eroarea C:\Documents and Settings\Administrator\Desktop\PAWNO\include\JunkBuster.inc(3248) : warning 201: redefinition of constant/macro (symbol "OnPlayerEnterRaceCheckpoint") Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase Header size: 11184 bytes Code size: 1712220 bytes Data size: 5502036 bytes Stack/heap size: 16384 bytes; estimated max. usage=4123 cells (16492 bytes) Total requirements: 7241824 bytes 1 Warning. Mersi la 2 !
  8. http://img232.imageshack.us/img232/6041/eroarei.png <<< Eroarea care mi`o da EDIT : am mai umblat putin prin SCRIPT si zic sa sterg #define strtock , l`am sters dau cOMPILE si acuma imi arata doar asta C:\Documents and Settings\Administrator\Desktop\PAWNO\include\JunkBuster.inc(3248) : warning 201: redefinition of constant/macro (symbol "OnPlayerEnterRaceCheckpoint") C:\Documents and Settings\Administrator\Desktop\Server\Server\gamemodes\eRP.pwn(39373) : warning 203: symbol is never used: "strtok1" Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase Header size: 11184 bytes Code size: 1711364 bytes Data size: 5501656 bytes Stack/heap size: 16384 bytes; estimated max. usage=4123 cells (16492 bytes) Total requirements: 7240588 bytes 2 Warnings.
×
×
  • 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.