Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // This is a comment
- // uncomment the line below if you want to write a filterscript
- #define FILTERSCRIPT
- #include <a_samp>
- #define PHONE_TYPE_BLACK (0)
- #define PHONE_TYPE_RED (1)
- #define PHONE_TYPE_BLUE (2)
- #define Page_None -1
- #define Page_Home 0
- #define Page_Menu 1
- #define Page_Notebook 2
- #define Page_Contact 3
- #define Page_Setting 4
- #define SLOT_PHONE 1
- new bool:pUseGUI[MAX_PLAYERS];
- new bool:pPhoneOff[MAX_PLAYERS];
- new pPhoneType[MAX_PLAYERS];
- enum cache_data
- {
- current_page
- }
- new cache_phone[MAX_PLAYERS][cache_data];
- new
- //PlayerText: ColorPanel[MAX_PLAYERS][10],
- PlayerText: PhoneFrame[MAX_PLAYERS][3],
- PlayerText: PhoneLogo[MAX_PLAYERS],
- PlayerText: PhoneSwitch[MAX_PLAYERS],
- PlayerText: PhoneInfo[MAX_PLAYERS],
- PlayerText: PhoneDisplay[MAX_PLAYERS],
- PlayerText: PhoneBtnL[MAX_PLAYERS],
- PlayerText: PhoneBtnR[MAX_PLAYERS],
- PlayerText: PhoneArrowUp[MAX_PLAYERS],
- PlayerText: PhoneArrowDown[MAX_PLAYERS],
- PlayerText: PhoneArrowLeft[MAX_PLAYERS],
- PlayerText: PhoneArrowRight[MAX_PLAYERS],
- PlayerText: PhoneBtnMenu[MAX_PLAYERS],
- PlayerText: PhoneBtnBack[MAX_PLAYERS],
- PlayerText: PhoneDate[MAX_PLAYERS],
- PlayerText: PhoneTime[MAX_PLAYERS],
- PlayerText: PhoneSignal[MAX_PLAYERS],
- PlayerText: PhonePower[MAX_PLAYERS],
- PlayerText: PhoneNotify[MAX_PLAYERS],
- PlayerText: PhoneList[MAX_PLAYERS][3],
- PlayerText: PhoneListName[MAX_PLAYERS]
- ;
- new PlayerText:NumberLetters[MAX_PLAYERS][4];
- //Shows Phone Textdraw
- stock Phone_ShowUI(playerid)
- {
- SendClientMessage(playerid, -1, "[ ! ] Note: To toggle the phone, use /phone. To bring up the mouse, use /pc.");
- Phone_HideUI(playerid);
- pUseGUI[playerid] = true;
- cache_phone[playerid][current_page] = Page_Home;
- AttachPlayerPhone(playerid);
- SetPlayerSpecialAction(playerid, SPECIAL_ACTION_STOPUSECELLPHONE);
- ApplyAnimation(playerid, "CARRY", "crry_prtial", 4.1, 0, 0, 0, 0, 0);
- new
- hour,
- minute,
- second,
- year,
- month,
- day,
- MonthStr[40],
- str[128]
- ;
- gettime(hour, minute, second);
- format(str, sizeof(str), "%02d:%02d", hour, minute);
- PlayerTextDrawSetString(playerid, PhoneTime[playerid], str);
- getdate(year, month, day);
- switch(month)
- {
- case 1: MonthStr = "January";
- case 2: MonthStr = "February";
- case 3: MonthStr = "March";
- case 4: MonthStr = "April";
- case 5: MonthStr = "May";
- case 6: MonthStr = "June";
- case 7: MonthStr = "July";
- case 8: MonthStr = "August";
- case 9: MonthStr = "September";
- case 10: MonthStr = "October";
- case 11: MonthStr = "November";
- case 12: MonthStr = "December";
- }
- format(str, sizeof(str), "%s_%d", MonthStr, day);
- PlayerTextDrawSetString(playerid, PhoneDate[playerid], str);
- if(pPhoneOff[playerid])
- {
- PlayerTextDrawBoxColor(playerid, PhoneDisplay[playerid], 255);
- }
- for(new i = 0; i < 3; i++) PlayerTextDrawShow(playerid, PhoneFrame[playerid][i]);
- PlayerTextDrawShow(playerid, PhoneLogo[playerid]);
- PlayerTextDrawShow(playerid, PhoneSwitch[playerid]);
- PlayerTextDrawShow(playerid, PhoneInfo[playerid]);
- PlayerTextDrawShow(playerid, PhoneDisplay[playerid]);
- PlayerTextDrawShow(playerid, PhoneBtnL[playerid]);
- PlayerTextDrawShow(playerid, PhoneBtnR[playerid]);
- PlayerTextDrawShow(playerid, PhoneArrowUp[playerid]);
- PlayerTextDrawShow(playerid, PhoneArrowDown[playerid]);
- PlayerTextDrawShow(playerid, PhoneArrowLeft[playerid]);
- PlayerTextDrawShow(playerid, PhoneArrowRight[playerid]);
- PlayerTextDrawShow(playerid, PhoneBtnMenu[playerid]);
- PlayerTextDrawShow(playerid, PhoneBtnBack[playerid]);
- PlayerTextDrawShow(playerid, PhoneDate[playerid]);
- PlayerTextDrawShow(playerid, PhoneTime[playerid]);
- PlayerTextDrawShow(playerid, PhoneSignal[playerid]);
- PlayerTextDrawShow(playerid, PhonePower[playerid]);
- PlayerTextDrawShow(playerid, PhoneDate[playerid]);
- PlayerTextDrawShow(playerid, PhoneTime[playerid]);
- PlayerTextDrawShow(playerid, PhoneNotify[playerid]);
- SelectTextDraw(playerid, 0xAFAFAFFF);
- return 1;
- }
- //Hides Phone Textdraw
- stock Phone_HideUI(playerid)
- {
- for(new i = 0; i < 3; i++) PlayerTextDrawHide(playerid, PhoneFrame[playerid][i]);
- PlayerTextDrawHide(playerid, PhoneLogo[playerid]);
- PlayerTextDrawHide(playerid, PhoneSwitch[playerid]);
- PlayerTextDrawHide(playerid, PhoneInfo[playerid]);
- PlayerTextDrawHide(playerid, PhoneDisplay[playerid]);
- PlayerTextDrawHide(playerid, PhoneBtnL[playerid]);
- PlayerTextDrawHide(playerid, PhoneBtnR[playerid]);
- PlayerTextDrawHide(playerid, PhoneArrowUp[playerid]);
- PlayerTextDrawHide(playerid, PhoneArrowDown[playerid]);
- PlayerTextDrawHide(playerid, PhoneArrowLeft[playerid]);
- PlayerTextDrawHide(playerid, PhoneArrowRight[playerid]);
- PlayerTextDrawHide(playerid, PhoneBtnMenu[playerid]);
- PlayerTextDrawHide(playerid, PhoneBtnBack[playerid]);
- PlayerTextDrawHide(playerid, PhoneDate[playerid]);
- PlayerTextDrawHide(playerid, PhoneTime[playerid]);
- PlayerTextDrawHide(playerid, PhoneSignal[playerid]);
- PlayerTextDrawHide(playerid, PhonePower[playerid]);
- PlayerTextDrawHide(playerid, PhoneDate[playerid]);
- PlayerTextDrawHide(playerid, PhoneTime[playerid]);
- PlayerTextDrawHide(playerid, PhoneNotify[playerid]);
- cache_phone[playerid][current_page] = Page_None;
- RemovePlayerAttachedObject(playerid, SLOT_PHONE);
- pUseGUI[playerid] = false;
- CancelSelectTextDraw(playerid);
- return 1;
- }
- //Attaches Player's Phone to calling action
- stock AttachPlayerPhone(playerid)
- {
- switch(pPhoneType[playerid])
- {
- case PHONE_TYPE_BLACK:
- {
- SetPlayerAttachedObject(playerid, SLOT_PHONE, 18868, 6, 0.064999, 0.043999, 0.004999, -112.0, 0.0, -178.9);
- }
- case PHONE_TYPE_RED:
- {
- PlayerTextDrawBoxColor(playerid, PhoneFrame[playerid][0], 1225921279);
- PlayerTextDrawColor(playerid, PhoneFrame[playerid][1], 1225921279);
- PlayerTextDrawColor(playerid, PhoneFrame[playerid][2], 1225921279);
- SetPlayerAttachedObject(playerid, SLOT_PHONE, 18870, 6, 0.064999, 0.043999, 0.004999, -112.0, 0.0, -178.9);
- }
- case PHONE_TYPE_BLUE:
- {
- PlayerTextDrawBoxColor(playerid, PhoneFrame[playerid][0], 456290303);
- PlayerTextDrawColor(playerid, PhoneFrame[playerid][1], 456290303);
- PlayerTextDrawColor(playerid, PhoneFrame[playerid][2], 456290303);
- SetPlayerAttachedObject(playerid, SLOT_PHONE, 18874, 6, 0.064999, 0.043999, 0.004999, -112.0, 0.0, -178.9);
- }
- }
- SetPlayerSpecialAction(playerid, SPECIAL_ACTION_USECELLPHONE);
- return 1;
- }
- //playerid == player's id | show == if menu of phone(call, sms, etc) would be shown | true = shown false = not shown | page == page of menu to be shown(if show == true)
- stock showPhoneMenu(playerid, bool:show, page)
- {
- if(show)
- {
- showPhonePage(playerid, page);
- PlayerTextDrawShow(playerid, PhoneListName[playerid]);
- for(new i = 0; i < 3; i ++) PlayerTextDrawShow(playerid, PhoneList[playerid][i]);
- PlayerTextDrawHide(playerid, PhoneDate[playerid]);
- PlayerTextDrawHide(playerid, PhoneTime[playerid]);
- PlayerTextDrawHide(playerid, PhoneSignal[playerid]);
- PlayerTextDrawHide(playerid, PhonePower[playerid]);
- PlayerTextDrawHide(playerid, PhoneNotify[playerid]);
- PlayerTextDrawHide(playerid, PhoneBtnMenu[playerid]);
- PlayerTextDrawHide(playerid, PhoneBtnBack[playerid]);
- }
- else
- {
- cache_phone[playerid][current_page] = 0;
- PlayerTextDrawHide(playerid, PhoneListName[playerid]);
- for(new i = 0; i < 3; i ++) PlayerTextDrawHide(playerid, PhoneList[playerid][i]);
- Phone_HideUI(playerid);
- Phone_ShowUI(playerid);
- }
- return 1;
- }
- //Shows page for phone textdraw | playerid == player's id | page == page of phone menu to be shown
- stock showPhonePage(playerid, page)
- {
- switch(page)
- {
- case Page_Home:
- {
- PlayerTextDrawSetString(playerid, PhoneListName[playerid], "Notebook~n~Contact~n~Setting");
- showPhoneMenu(playerid, false, -1);
- }
- case Page_Menu:
- {
- PlayerTextDrawSetString(playerid, PhoneListName[playerid], "Notebook~n~Contact~n~Setting");
- }
- case Page_Notebook:
- {
- PlayerTextDrawSetString(playerid, PhoneListName[playerid], "Call~n~SMS~n~Contact_List");
- }
- case Page_Contact:
- {
- PlayerTextDrawSetString(playerid, PhoneListName[playerid], "Add_Contact~n~Edit_Contact~n~Delete_Contact");
- }
- case Page_Setting:
- {
- PlayerTextDrawSetString(playerid, PhoneListName[playerid], "Ringtone~n~Theme~n~Phone_Mode"); // phone mode > silent, flight
- }
- }
- }
- public OnFilterScriptInit()
- {
- print("\n--------------------------------------");
- print(" Blank Filterscript by your name here");
- print("--------------------------------------\n");
- return 1;
- }
- public OnFilterScriptExit()
- {
- return 1;
- }
- public OnGameModeInit()
- {
- // Don't use these lines if it's a filterscript
- SetGameModeText("Blank Script");
- AddPlayerClass(0, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0);
- return 1;
- }
- public OnGameModeExit()
- {
- return 1;
- }
- public OnPlayerRequestClass(playerid, classid)
- {
- SetPlayerPos(playerid, 1958.3783, 1343.1572, 15.3746);
- SetPlayerCameraPos(playerid, 1958.3783, 1343.1572, 15.3746);
- SetPlayerCameraLookAt(playerid, 1958.3783, 1343.1572, 15.3746);
- return 1;
- }
- public OnPlayerConnect(playerid)
- {
- PhoneFrame[playerid][0] = CreatePlayerTextDraw(playerid, 476.003417, 346.916748, "box");
- PlayerTextDrawLetterSize(playerid, PhoneFrame[playerid][0], 0.000000, 13.935577);
- PlayerTextDrawTextSize(playerid, PhoneFrame[playerid][0], 558.000000, 0.000000);
- PlayerTextDrawAlignment(playerid, PhoneFrame[playerid][0], 1);
- PlayerTextDrawColor(playerid, PhoneFrame[playerid][0], 255);
- PlayerTextDrawUseBox(playerid, PhoneFrame[playerid][0], 1);
- PlayerTextDrawBoxColor(playerid, PhoneFrame[playerid][0], 255);
- PlayerTextDrawSetShadow(playerid, PhoneFrame[playerid][0], 0);
- PlayerTextDrawSetOutline(playerid, PhoneFrame[playerid][0], 0);
- PlayerTextDrawBackgroundColor(playerid, PhoneFrame[playerid][0], 255);
- PlayerTextDrawFont(playerid, PhoneFrame[playerid][0], 1);
- PlayerTextDrawSetProportional(playerid, PhoneFrame[playerid][0], 1);
- PlayerTextDrawSetShadow(playerid, PhoneFrame[playerid][0], 0);
- PhoneFrame[playerid][1] = CreatePlayerTextDraw(playerid, 471.149597, 337.583282, "LD_DRV:TVCORN");
- PlayerTextDrawLetterSize(playerid, PhoneFrame[playerid][1], 0.000000, 0.000000);
- PlayerTextDrawTextSize(playerid, PhoneFrame[playerid][1], 45.000000, 111.000000);
- PlayerTextDrawAlignment(playerid, PhoneFrame[playerid][1], 1);
- PlayerTextDrawColor(playerid, PhoneFrame[playerid][1], -1);
- PlayerTextDrawSetShadow(playerid, PhoneFrame[playerid][1], 0);
- PlayerTextDrawSetOutline(playerid, PhoneFrame[playerid][1], 0);
- PlayerTextDrawBackgroundColor(playerid, PhoneFrame[playerid][1], 255);
- PlayerTextDrawFont(playerid, PhoneFrame[playerid][1], 4);
- PlayerTextDrawSetProportional(playerid, PhoneFrame[playerid][1], 0);
- PlayerTextDrawSetShadow(playerid, PhoneFrame[playerid][1], 0);
- PhoneFrame[playerid][2] = CreatePlayerTextDraw(playerid, 562.979858, 337.583221, "LD_DRV:TVCORN");
- PlayerTextDrawLetterSize(playerid, PhoneFrame[playerid][2], 0.000000, 0.000000);
- PlayerTextDrawTextSize(playerid, PhoneFrame[playerid][2], -47.000000, 112.000000);
- PlayerTextDrawAlignment(playerid, PhoneFrame[playerid][2], 1);
- PlayerTextDrawColor(playerid, PhoneFrame[playerid][2], -1);
- PlayerTextDrawSetShadow(playerid, PhoneFrame[playerid][2], 0);
- PlayerTextDrawSetOutline(playerid, PhoneFrame[playerid][2], 0);
- PlayerTextDrawBackgroundColor(playerid, PhoneFrame[playerid][2], 255);
- PlayerTextDrawFont(playerid, PhoneFrame[playerid][2], 4);
- PlayerTextDrawSetProportional(playerid, PhoneFrame[playerid][2], 0);
- PlayerTextDrawSetShadow(playerid, PhoneFrame[playerid][2], 0);
- PhoneLogo[playerid] = CreatePlayerTextDraw(playerid, 495.212463, 352.166748, "");
- PlayerTextDrawLetterSize(playerid, PhoneLogo[playerid], 0.206500, 0.940833);
- PlayerTextDrawAlignment(playerid, PhoneLogo[playerid], 1);
- PlayerTextDrawColor(playerid, PhoneLogo[playerid], -1);
- PlayerTextDrawSetShadow(playerid, PhoneLogo[playerid], 0);
- PlayerTextDrawSetOutline(playerid, PhoneLogo[playerid], 0);
- PlayerTextDrawBackgroundColor(playerid, PhoneLogo[playerid], 255);
- PlayerTextDrawFont(playerid, PhoneLogo[playerid], 1);
- PlayerTextDrawSetProportional(playerid, PhoneLogo[playerid], 1);
- PlayerTextDrawSetShadow(playerid, PhoneLogo[playerid], 0);
- PhoneSwitch[playerid] = CreatePlayerTextDraw(playerid, 546.581420, 347.499877, ""/*"LD_BEAT:circle"*/);
- PlayerTextDrawLetterSize(playerid, PhoneSwitch[playerid], 0.000000, 0.000000);
- PlayerTextDrawTextSize(playerid, PhoneSwitch[playerid], 12.000000, 13.000000);
- PlayerTextDrawAlignment(playerid, PhoneSwitch[playerid], 1);
- PlayerTextDrawColor(playerid, PhoneSwitch[playerid], -1);
- PlayerTextDrawSetShadow(playerid, PhoneSwitch[playerid], 0);
- PlayerTextDrawSetOutline(playerid, PhoneSwitch[playerid], 0);
- PlayerTextDrawBackgroundColor(playerid, PhoneSwitch[playerid], 255);
- PlayerTextDrawFont(playerid, PhoneSwitch[playerid], 4);
- PlayerTextDrawSetProportional(playerid, PhoneSwitch[playerid], 0);
- PlayerTextDrawSetShadow(playerid, PhoneSwitch[playerid], 0);
- PlayerTextDrawSetSelectable(playerid, PhoneSwitch[playerid], true);
- PhoneInfo[playerid] = CreatePlayerTextDraw(playerid, 547.518432, 349.249816, ""/*"LD_BEAT:chit"*/);
- PlayerTextDrawLetterSize(playerid, PhoneInfo[playerid], 0.000000, 0.000000);
- PlayerTextDrawTextSize(playerid, PhoneInfo[playerid], -6.000000, 6.000000);
- PlayerTextDrawAlignment(playerid, PhoneInfo[playerid], 1);
- PlayerTextDrawColor(playerid, PhoneInfo[playerid], -1);
- PlayerTextDrawSetShadow(playerid, PhoneInfo[playerid], 0);
- PlayerTextDrawSetOutline(playerid, PhoneInfo[playerid], 0);
- PlayerTextDrawBackgroundColor(playerid, PhoneInfo[playerid], 255);
- PlayerTextDrawFont(playerid, PhoneInfo[playerid], 4);
- PlayerTextDrawSetProportional(playerid, PhoneInfo[playerid], 0);
- PlayerTextDrawSetShadow(playerid, PhoneInfo[playerid], 0);
- PhoneDisplay[playerid] = CreatePlayerTextDraw(playerid, 483.031005, 367.916717, "box");
- PlayerTextDrawLetterSize(playerid, PhoneDisplay[playerid], 0.000000, 4.565154);
- PlayerTextDrawTextSize(playerid, PhoneDisplay[playerid], 551.000000, 0.000000);
- PlayerTextDrawAlignment(playerid, PhoneDisplay[playerid], 1);
- PlayerTextDrawColor(playerid, PhoneDisplay[playerid], -1);
- PlayerTextDrawUseBox(playerid, PhoneDisplay[playerid], 1);
- PlayerTextDrawBoxColor(playerid, PhoneDisplay[playerid], -572662273);
- PlayerTextDrawSetShadow(playerid, PhoneDisplay[playerid], 0);
- PlayerTextDrawSetOutline(playerid, PhoneDisplay[playerid], 0);
- PlayerTextDrawBackgroundColor(playerid, PhoneDisplay[playerid], 255);
- PlayerTextDrawFont(playerid, PhoneDisplay[playerid], 1);
- PlayerTextDrawSetProportional(playerid, PhoneDisplay[playerid], 1);
- PlayerTextDrawSetShadow(playerid, PhoneDisplay[playerid], 0);
- /* PhoneBtnL[playerid] = CreatePlayerTextDraw(playerid, 483.030639, 415.166503, "box");
- PlayerTextDrawLetterSize(playerid, PhoneBtnL[playerid], 0.000000, 0.535869);
- PlayerTextDrawTextSize(playerid, PhoneBtnL[playerid], 499.000000, 0.000000);
- PlayerTextDrawAlignment(playerid, PhoneBtnL[playerid], 1);
- PlayerTextDrawColor(playerid, PhoneBtnL[playerid], -1);
- PlayerTextDrawUseBox(playerid, PhoneBtnL[playerid], 1);
- PlayerTextDrawBoxColor(playerid, PhoneBtnL[playerid], -1717986817);
- PlayerTextDrawSetShadow(playerid, PhoneBtnL[playerid], 0);
- PlayerTextDrawSetOutline(playerid, PhoneBtnL[playerid], 0);
- PlayerTextDrawBackgroundColor(playerid, PhoneBtnL[playerid], 255);
- PlayerTextDrawFont(playerid, PhoneBtnL[playerid], 1);
- PlayerTextDrawSetProportional(playerid, PhoneBtnL[playerid], 1);
- PlayerTextDrawSetShadow(playerid, PhoneBtnL[playerid], 0);
- PlayerTextDrawSetSelectable(playerid, PhoneBtnL[playerid], true);
- PhoneBtnR[playerid] = CreatePlayerTextDraw(playerid, 555.182739, 415.166503, "box");
- PlayerTextDrawLetterSize(playerid, PhoneBtnR[playerid], 0.000000, 0.442165);
- PlayerTextDrawTextSize(playerid, PhoneBtnR[playerid], 531.000000, 0.000000);
- PlayerTextDrawAlignment(playerid, PhoneBtnR[playerid], 1);
- PlayerTextDrawColor(playerid, PhoneBtnR[playerid], -1);
- PlayerTextDrawUseBox(playerid, PhoneBtnR[playerid], 1);
- PlayerTextDrawBoxColor(playerid, PhoneBtnR[playerid], -1717986817);
- PlayerTextDrawSetShadow(playerid, PhoneBtnR[playerid], 0);
- PlayerTextDrawSetOutline(playerid, PhoneBtnR[playerid], 0);
- PlayerTextDrawBackgroundColor(playerid, PhoneBtnR[playerid], 255);
- PlayerTextDrawFont(playerid, PhoneBtnR[playerid], 1);
- PlayerTextDrawSetProportional(playerid, PhoneBtnR[playerid], 1);
- PlayerTextDrawSetShadow(playerid, PhoneBtnR[playerid], 0);
- PlayerTextDrawSetSelectable(playerid, PhoneBtnR[playerid], true);
- */
- PhoneBtnL[playerid] = CreatePlayerTextDraw(playerid, 480.988555, 412.833404, "");
- PlayerTextDrawLetterSize(playerid, PhoneBtnL[playerid], 0.000000, 0.000000);
- PlayerTextDrawTextSize(playerid, PhoneBtnL[playerid], 19.000000, 10.000000);
- PlayerTextDrawAlignment(playerid, PhoneBtnL[playerid], 1);
- PlayerTextDrawColor(playerid, PhoneBtnL[playerid], -1717986817);
- PlayerTextDrawSetShadow(playerid, PhoneBtnL[playerid], 0);
- PlayerTextDrawSetOutline(playerid, PhoneBtnL[playerid], 0);
- PlayerTextDrawBackgroundColor(playerid, PhoneBtnL[playerid], -1717986817);
- PlayerTextDrawFont(playerid, PhoneBtnL[playerid], 5);
- PlayerTextDrawSetProportional(playerid, PhoneBtnL[playerid], 0);
- PlayerTextDrawSetShadow(playerid, PhoneBtnL[playerid], 0);
- PlayerTextDrawSetSelectable(playerid, PhoneBtnL[playerid], true);
- PlayerTextDrawSetPreviewModel(playerid, PhoneBtnL[playerid], 0);
- PlayerTextDrawSetPreviewRot(playerid, PhoneBtnL[playerid], 0.000000, 0.000000, 0.000000, -1.000000);
- PhoneBtnR[playerid] = CreatePlayerTextDraw(playerid, 533.932189, 412.833404, "");
- PlayerTextDrawLetterSize(playerid, PhoneBtnR[playerid], 0.000000, 0.000000);
- PlayerTextDrawTextSize(playerid, PhoneBtnR[playerid], 19.000000, 10.000000);
- PlayerTextDrawAlignment(playerid, PhoneBtnR[playerid], 1);
- PlayerTextDrawColor(playerid, PhoneBtnR[playerid], -1717986817);
- PlayerTextDrawSetShadow(playerid, PhoneBtnR[playerid], 0);
- PlayerTextDrawSetOutline(playerid, PhoneBtnR[playerid], 0);
- PlayerTextDrawBackgroundColor(playerid, PhoneBtnR[playerid], -1717986817);
- PlayerTextDrawFont(playerid, PhoneBtnR[playerid], 5);
- PlayerTextDrawSetProportional(playerid, PhoneBtnR[playerid], 0);
- PlayerTextDrawSetShadow(playerid, PhoneBtnR[playerid], 0);
- PlayerTextDrawSetSelectable(playerid, PhoneBtnR[playerid], true);
- PlayerTextDrawSetPreviewModel(playerid, PhoneBtnR[playerid], 0);
- PlayerTextDrawSetPreviewRot(playerid, PhoneBtnR[playerid], 0.000000, 0.000000, 0.000000, -1.000000);
- PhoneArrowUp[playerid] = CreatePlayerTextDraw(playerid, 511.442016, 444.916625, ""/*"LD_BEAT:UP"*/);
- PlayerTextDrawLetterSize(playerid, PhoneArrowUp[playerid], 0.000000, 0.000000);
- PlayerTextDrawTextSize(playerid, PhoneArrowUp[playerid], 12.000000, -13.000000);
- PlayerTextDrawAlignment(playerid, PhoneArrowUp[playerid], 1);
- PlayerTextDrawColor(playerid, PhoneArrowUp[playerid], -1);
- PlayerTextDrawSetShadow(playerid, PhoneArrowUp[playerid], 0);
- PlayerTextDrawSetOutline(playerid, PhoneArrowUp[playerid], 0);
- PlayerTextDrawBackgroundColor(playerid, PhoneArrowUp[playerid], 255);
- PlayerTextDrawFont(playerid, PhoneArrowUp[playerid], 4);
- PlayerTextDrawSetProportional(playerid, PhoneArrowUp[playerid], 0);
- PlayerTextDrawSetShadow(playerid, PhoneArrowUp[playerid], 0);
- PlayerTextDrawSetSelectable(playerid, PhoneArrowUp[playerid], true);
- PhoneArrowDown[playerid] = CreatePlayerTextDraw(playerid, 511.442016, 426.833068, ""/*"LD_BEAT:DOWN"*/);
- PlayerTextDrawLetterSize(playerid, PhoneArrowDown[playerid], 0.000000, 0.000000);
- PlayerTextDrawTextSize(playerid, PhoneArrowDown[playerid], 12.000000, -13.000000);
- PlayerTextDrawAlignment(playerid, PhoneArrowDown[playerid], 1);
- PlayerTextDrawColor(playerid, PhoneArrowDown[playerid], -1);
- PlayerTextDrawSetShadow(playerid, PhoneArrowDown[playerid], 0);
- PlayerTextDrawSetOutline(playerid, PhoneArrowDown[playerid], 0);
- PlayerTextDrawBackgroundColor(playerid, PhoneArrowDown[playerid], 255);
- PlayerTextDrawFont(playerid, PhoneArrowDown[playerid], 4);
- PlayerTextDrawSetProportional(playerid, PhoneArrowDown[playerid], 0);
- PlayerTextDrawSetShadow(playerid, PhoneArrowDown[playerid], 0);
- PlayerTextDrawSetSelectable(playerid, PhoneArrowDown[playerid], true);
- PhoneArrowLeft[playerid] = CreatePlayerTextDraw(playerid, 501.603393, 434.999847, ""/*"LD_BEAT:LEFT"*/);
- PlayerTextDrawLetterSize(playerid, PhoneArrowLeft[playerid], 0.000000, 0.000000);
- PlayerTextDrawTextSize(playerid, PhoneArrowLeft[playerid], 12.000000, -13.000000);
- PlayerTextDrawAlignment(playerid, PhoneArrowLeft[playerid], 1);
- PlayerTextDrawColor(playerid, PhoneArrowLeft[playerid], -1);
- PlayerTextDrawSetShadow(playerid, PhoneArrowLeft[playerid], 0);
- PlayerTextDrawSetOutline(playerid, PhoneArrowLeft[playerid], 0);
- PlayerTextDrawBackgroundColor(playerid, PhoneArrowLeft[playerid], 255);
- PlayerTextDrawFont(playerid, PhoneArrowLeft[playerid], 4);
- PlayerTextDrawSetProportional(playerid, PhoneArrowLeft[playerid], 0);
- PlayerTextDrawSetShadow(playerid, PhoneArrowLeft[playerid], 0);
- PlayerTextDrawSetSelectable(playerid, PhoneArrowLeft[playerid], true);
- PhoneArrowRight[playerid] = CreatePlayerTextDraw(playerid, 520.812255, 435.583221, ""/*"LD_BEAT:RIGHT"*/);
- PlayerTextDrawLetterSize(playerid, PhoneArrowRight[playerid], 0.000000, 0.000000);
- PlayerTextDrawTextSize(playerid, PhoneArrowRight[playerid], 12.000000, -13.000000);
- PlayerTextDrawAlignment(playerid, PhoneArrowRight[playerid], 1);
- PlayerTextDrawColor(playerid, PhoneArrowRight[playerid], -1);
- PlayerTextDrawSetShadow(playerid, PhoneArrowRight[playerid], 0);
- PlayerTextDrawSetOutline(playerid, PhoneArrowRight[playerid], 0);
- PlayerTextDrawBackgroundColor(playerid, PhoneArrowRight[playerid], 255);
- PlayerTextDrawFont(playerid, PhoneArrowRight[playerid], 4);
- PlayerTextDrawSetProportional(playerid, PhoneArrowRight[playerid], 0);
- PlayerTextDrawSetShadow(playerid, PhoneArrowRight[playerid], 0);
- PlayerTextDrawSetSelectable(playerid, PhoneArrowRight[playerid], true);
- PhoneBtnMenu[playerid] = CreatePlayerTextDraw(playerid, 490.995941, 399.416625, "Menu");
- PlayerTextDrawLetterSize(playerid, PhoneBtnMenu[playerid], 0.156368, 0.929166);
- //PlayerTextDrawTextSize(playerid, PhoneBtnMenu[playerid], 15.000000, 21.000000);
- PlayerTextDrawAlignment(playerid, PhoneBtnMenu[playerid], 2);
- PlayerTextDrawColor(playerid, PhoneBtnMenu[playerid], 255);
- //PlayerTextDrawUseBox(playerid, PhoneBtnMenu[playerid], 1);
- PlayerTextDrawBoxColor(playerid, PhoneBtnMenu[playerid], 0);
- PlayerTextDrawSetShadow(playerid, PhoneBtnMenu[playerid], 0);
- PlayerTextDrawSetOutline(playerid, PhoneBtnMenu[playerid], 0);
- PlayerTextDrawBackgroundColor(playerid, PhoneBtnMenu[playerid], 255);
- PlayerTextDrawFont(playerid, PhoneBtnMenu[playerid], 1);
- PlayerTextDrawSetProportional(playerid, PhoneBtnMenu[playerid], 1);
- PlayerTextDrawSetShadow(playerid, PhoneBtnMenu[playerid], 0);
- //PlayerTextDrawSetSelectable(playerid, PhoneBtnMenu[playerid], true);
- PhoneBtnBack[playerid] = CreatePlayerTextDraw(playerid, 543.470092, 399.416625, "Back");
- PlayerTextDrawLetterSize(playerid, PhoneBtnBack[playerid], 0.156368, 0.929166);
- //PlayerTextDrawTextSize(playerid, PhoneBtnBack[playerid], 0.000000, -21.000000);
- PlayerTextDrawAlignment(playerid, PhoneBtnBack[playerid], 2);
- PlayerTextDrawColor(playerid, PhoneBtnBack[playerid], 255);
- //PlayerTextDrawUseBox(playerid, PhoneBtnBack[playerid], 1);
- PlayerTextDrawBoxColor(playerid, PhoneBtnBack[playerid], 0);
- PlayerTextDrawSetShadow(playerid, PhoneBtnBack[playerid], 0);
- PlayerTextDrawSetOutline(playerid, PhoneBtnBack[playerid], 0);
- PlayerTextDrawBackgroundColor(playerid, PhoneBtnBack[playerid], 255);
- PlayerTextDrawFont(playerid, PhoneBtnBack[playerid], 1);
- PlayerTextDrawSetProportional(playerid, PhoneBtnBack[playerid], 1);
- PlayerTextDrawSetShadow(playerid, PhoneBtnBack[playerid], 0);
- //PlayerTextDrawSetSelectable(playerid, PhoneBtnBack[playerid], true);
- PhoneTime[playerid] = CreatePlayerTextDraw(playerid, 503.177520, 374.333282, "17:00");
- PlayerTextDrawLetterSize(playerid, PhoneTime[playerid], 0.295519, 1.127499);
- PlayerTextDrawAlignment(playerid, PhoneTime[playerid], 1);
- PlayerTextDrawColor(playerid, PhoneTime[playerid], 255);
- PlayerTextDrawSetShadow(playerid, PhoneTime[playerid], 0);
- PlayerTextDrawSetOutline(playerid, PhoneTime[playerid], 0);
- PlayerTextDrawBackgroundColor(playerid, PhoneTime[playerid], 255);
- PlayerTextDrawFont(playerid, PhoneTime[playerid], 1);
- PlayerTextDrawSetProportional(playerid, PhoneTime[playerid], 1);
- PlayerTextDrawSetShadow(playerid, PhoneTime[playerid], 0);
- PhoneDate[playerid] = CreatePlayerTextDraw(playerid, 517.701782, 384.249908, "November_1");
- PlayerTextDrawLetterSize(playerid, PhoneDate[playerid], 0.182137, 0.934999);
- PlayerTextDrawAlignment(playerid, PhoneDate[playerid], 2);
- PlayerTextDrawColor(playerid, PhoneDate[playerid], 255);
- PlayerTextDrawSetShadow(playerid, PhoneDate[playerid], 0);
- PlayerTextDrawSetOutline(playerid, PhoneDate[playerid], 0);
- PlayerTextDrawBackgroundColor(playerid, PhoneDate[playerid], 255);
- PlayerTextDrawFont(playerid, PhoneDate[playerid], 1);
- PlayerTextDrawSetProportional(playerid, PhoneDate[playerid], 1);
- PlayerTextDrawSetShadow(playerid, PhoneDate[playerid], 0);
- PhoneSignal[playerid] = CreatePlayerTextDraw(playerid, 483.030761, 366.166687, "IIIIII");
- PlayerTextDrawLetterSize(playerid, PhoneSignal[playerid], 0.162927, 0.789166);
- PlayerTextDrawAlignment(playerid, PhoneSignal[playerid], 1);
- PlayerTextDrawColor(playerid, PhoneSignal[playerid], 255);
- PlayerTextDrawSetShadow(playerid, PhoneSignal[playerid], 0);
- PlayerTextDrawSetOutline(playerid, PhoneSignal[playerid], 0);
- PlayerTextDrawBackgroundColor(playerid, PhoneSignal[playerid], 255);
- PlayerTextDrawFont(playerid, PhoneSignal[playerid], 1);
- PlayerTextDrawSetProportional(playerid, PhoneSignal[playerid], 1);
- PlayerTextDrawSetShadow(playerid, PhoneSignal[playerid], 0);
- PhonePower[playerid] = CreatePlayerTextDraw(playerid, 544.407287, 366.166625, "100%");
- PlayerTextDrawLetterSize(playerid, PhonePower[playerid], 0.162927, 0.789166);
- PlayerTextDrawAlignment(playerid, PhonePower[playerid], 2);
- PlayerTextDrawColor(playerid, PhonePower[playerid], 255);
- PlayerTextDrawSetShadow(playerid, PhonePower[playerid], 0);
- PlayerTextDrawSetOutline(playerid, PhonePower[playerid], 0);
- PlayerTextDrawBackgroundColor(playerid, PhonePower[playerid], 255);
- PlayerTextDrawFont(playerid, PhonePower[playerid], 1);
- PlayerTextDrawSetProportional(playerid, PhonePower[playerid], 1);
- PlayerTextDrawSetShadow(playerid, PhonePower[playerid], 0);
- PhoneNotify[playerid] = CreatePlayerTextDraw(playerid, 516.764465, 366.749969, "_");
- PlayerTextDrawLetterSize(playerid, PhoneNotify[playerid], 0.136690, 0.742499);
- PlayerTextDrawAlignment(playerid, PhoneNotify[playerid], 2);
- PlayerTextDrawColor(playerid, PhoneNotify[playerid], -16776961);
- PlayerTextDrawSetShadow(playerid, PhoneNotify[playerid], 0);
- PlayerTextDrawSetOutline(playerid, PhoneNotify[playerid], 0);
- PlayerTextDrawBackgroundColor(playerid, PhoneNotify[playerid], 255);
- PlayerTextDrawFont(playerid, PhoneNotify[playerid], 1);
- PlayerTextDrawSetProportional(playerid, PhoneNotify[playerid], 1);
- PlayerTextDrawSetShadow(playerid, PhoneNotify[playerid], 0);
- //PlayerTextDrawSetSelectable(playerid, PhoneNotify[playerid], true);
- PhoneListName[playerid] = CreatePlayerTextDraw(playerid, 518.170104, 368.500061, "Notebook~n~Contact~n~Setting");
- PlayerTextDrawLetterSize(playerid, PhoneListName[playerid], 0.176983, 1.465832);
- PlayerTextDrawAlignment(playerid, PhoneListName[playerid], 2);
- PlayerTextDrawColor(playerid, PhoneListName[playerid], 255);
- PlayerTextDrawSetShadow(playerid, PhoneListName[playerid], 0);
- PlayerTextDrawSetOutline(playerid, PhoneListName[playerid], 0);
- PlayerTextDrawBackgroundColor(playerid, PhoneListName[playerid], 255);
- PlayerTextDrawFont(playerid, PhoneListName[playerid], 2);
- PlayerTextDrawSetProportional(playerid, PhoneListName[playerid], 1);
- PlayerTextDrawSetShadow(playerid, PhoneListName[playerid], 0);
- PhoneList[playerid][0] = CreatePlayerTextDraw(playerid, 483.799438, 369.666717, "");
- PlayerTextDrawLetterSize(playerid, PhoneList[playerid][0], 0.000000, 0.000000);
- PlayerTextDrawTextSize(playerid, PhoneList[playerid][0], 66.000000, 12.000000);
- PlayerTextDrawAlignment(playerid, PhoneList[playerid][0], 1);
- PlayerTextDrawColor(playerid, PhoneList[playerid][0], -2139062017);
- PlayerTextDrawSetShadow(playerid, PhoneList[playerid][0], 0);
- PlayerTextDrawSetOutline(playerid, PhoneList[playerid][0], 0);
- PlayerTextDrawBackgroundColor(playerid, PhoneList[playerid][0], -1717986817);
- PlayerTextDrawFont(playerid, PhoneList[playerid][0], 5);
- PlayerTextDrawSetProportional(playerid, PhoneList[playerid][0], 0);
- PlayerTextDrawSetShadow(playerid, PhoneList[playerid][0], 0);
- PlayerTextDrawSetSelectable(playerid, PhoneList[playerid][0], true);
- PlayerTextDrawSetPreviewModel(playerid, PhoneList[playerid][0], 0);
- PlayerTextDrawSetPreviewRot(playerid, PhoneList[playerid][0], 0.000000, 0.000000, 0.000000, -2.000000);
- PhoneList[playerid][1] = CreatePlayerTextDraw(playerid, 483.799407, 383.083465, "");
- PlayerTextDrawLetterSize(playerid, PhoneList[playerid][1], 0.000000, 0.000000);
- PlayerTextDrawTextSize(playerid, PhoneList[playerid][1], 66.000000, 12.000000);
- PlayerTextDrawAlignment(playerid, PhoneList[playerid][1], 1);
- PlayerTextDrawColor(playerid, PhoneList[playerid][1], -2139062017);
- PlayerTextDrawSetShadow(playerid, PhoneList[playerid][1], 0);
- PlayerTextDrawSetOutline(playerid, PhoneList[playerid][1], 0);
- PlayerTextDrawBackgroundColor(playerid, PhoneList[playerid][1], -1717986817);
- PlayerTextDrawFont(playerid, PhoneList[playerid][1], 5);
- PlayerTextDrawSetProportional(playerid, PhoneList[playerid][1], 0);
- PlayerTextDrawSetShadow(playerid, PhoneList[playerid][1], 0);
- PlayerTextDrawSetSelectable(playerid, PhoneList[playerid][1], true);
- PlayerTextDrawSetPreviewModel(playerid, PhoneList[playerid][1], 0);
- PlayerTextDrawSetPreviewRot(playerid, PhoneList[playerid][1], 0.000000, 0.000000, 0.000000, -2.000000);
- PhoneList[playerid][2] = CreatePlayerTextDraw(playerid, 484.267944, 396.500244, "");
- PlayerTextDrawLetterSize(playerid, PhoneList[playerid][2], 0.000000, 0.000000);
- PlayerTextDrawTextSize(playerid, PhoneList[playerid][2], 66.000000, 12.000000);
- PlayerTextDrawAlignment(playerid, PhoneList[playerid][2], 1);
- PlayerTextDrawColor(playerid, PhoneList[playerid][2], -2139062017);
- PlayerTextDrawSetShadow(playerid, PhoneList[playerid][2], 0);
- PlayerTextDrawSetOutline(playerid, PhoneList[playerid][2], 0);
- PlayerTextDrawBackgroundColor(playerid, PhoneList[playerid][2], -1717986817);
- PlayerTextDrawFont(playerid, PhoneList[playerid][2], 5);
- PlayerTextDrawSetProportional(playerid, PhoneList[playerid][2], 0);
- PlayerTextDrawSetShadow(playerid, PhoneList[playerid][2], 0);
- PlayerTextDrawSetSelectable(playerid, PhoneList[playerid][2], true);
- PlayerTextDrawSetPreviewModel(playerid, PhoneList[playerid][2], 0);
- PlayerTextDrawSetPreviewRot(playerid, PhoneList[playerid][2], 0.000000, 0.000000, 0.000000, -2.000000);
- NumberLetters[playerid][0] = CreatePlayerTextDraw(playerid, 504.114227, 285.083312, "1___2___3");
- PlayerTextDrawLetterSize(playerid, NumberLetters[playerid][0], 0.410776, 1.862500);
- PlayerTextDrawAlignment(playerid, NumberLetters[playerid][0], 1);
- PlayerTextDrawColor(playerid, NumberLetters[playerid][0], -1);
- PlayerTextDrawSetShadow(playerid, NumberLetters[playerid][0], 0);
- PlayerTextDrawSetOutline(playerid, NumberLetters[playerid][0], 0);
- PlayerTextDrawBackgroundColor(playerid, NumberLetters[playerid][0], 255);
- PlayerTextDrawFont(playerid, NumberLetters[playerid][0], 1);
- PlayerTextDrawSetProportional(playerid, NumberLetters[playerid][0], 1);
- PlayerTextDrawSetShadow(playerid, NumberLetters[playerid][0], 0);
- NumberLetters[playerid][1] = CreatePlayerTextDraw(playerid, 503.177154, 313.666625, "4___5___6");
- PlayerTextDrawLetterSize(playerid, NumberLetters[playerid][1], 0.410776, 1.862500);
- PlayerTextDrawAlignment(playerid, NumberLetters[playerid][1], 1);
- PlayerTextDrawColor(playerid, NumberLetters[playerid][1], -1);
- PlayerTextDrawSetShadow(playerid, NumberLetters[playerid][1], 0);
- PlayerTextDrawSetOutline(playerid, NumberLetters[playerid][1], 0);
- PlayerTextDrawBackgroundColor(playerid, NumberLetters[playerid][1], 255);
- PlayerTextDrawFont(playerid, NumberLetters[playerid][1], 1);
- PlayerTextDrawSetProportional(playerid, NumberLetters[playerid][1], 1);
- PlayerTextDrawSetShadow(playerid, NumberLetters[playerid][1], 0);
- NumberLetters[playerid][2] = CreatePlayerTextDraw(playerid, 503.177124, 341.083312, "7___8___9");
- PlayerTextDrawLetterSize(playerid, NumberLetters[playerid][2], 0.410776, 1.862500);
- PlayerTextDrawAlignment(playerid, NumberLetters[playerid][2], 1);
- PlayerTextDrawColor(playerid, NumberLetters[playerid][2], -1);
- PlayerTextDrawSetShadow(playerid, NumberLetters[playerid][2], 0);
- PlayerTextDrawSetOutline(playerid, NumberLetters[playerid][2], 0);
- PlayerTextDrawBackgroundColor(playerid, NumberLetters[playerid][2], 255);
- PlayerTextDrawFont(playerid, NumberLetters[playerid][2], 1);
- PlayerTextDrawSetProportional(playerid, NumberLetters[playerid][2], 1);
- PlayerTextDrawSetShadow(playerid, NumberLetters[playerid][2], 0);
- NumberLetters[playerid][3] = CreatePlayerTextDraw(playerid, 504.114288, 369.083435, "0");
- PlayerTextDrawLetterSize(playerid, NumberLetters[playerid][3], 0.400000, 1.600000);
- PlayerTextDrawAlignment(playerid, NumberLetters[playerid][3], 1);
- PlayerTextDrawColor(playerid, NumberLetters[playerid][3], -1);
- PlayerTextDrawSetShadow(playerid, NumberLetters[playerid][3], 0);
- PlayerTextDrawSetOutline(playerid, NumberLetters[playerid][3], 0);
- PlayerTextDrawBackgroundColor(playerid, NumberLetters[playerid][3], 255);
- PlayerTextDrawFont(playerid, NumberLetters[playerid][3], 1);
- PlayerTextDrawSetProportional(playerid, NumberLetters[playerid][3], 1);
- PlayerTextDrawSetShadow(playerid, NumberLetters[playerid][3], 0);
- return 1;
- }
- public OnPlayerDisconnect(playerid, reason)
- {
- return 1;
- }
- public OnPlayerSpawn(playerid)
- {
- return 1;
- }
- public OnPlayerDeath(playerid, killerid, reason)
- {
- return 1;
- }
- public OnVehicleSpawn(vehicleid)
- {
- return 1;
- }
- public OnVehicleDeath(vehicleid, killerid)
- {
- return 1;
- }
- public OnPlayerText(playerid, text[])
- {
- return 1;
- }
- public OnPlayerCommandText(playerid, cmdtext[])
- {
- if (strcmp("/mycommand", cmdtext, true, 10) == 0)
- {
- // Do something here
- return 1;
- }
- return 0;
- }
- public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
- {
- return 1;
- }
- public OnPlayerExitVehicle(playerid, vehicleid)
- {
- return 1;
- }
- public OnPlayerStateChange(playerid, newstate, oldstate)
- {
- return 1;
- }
- public OnPlayerEnterCheckpoint(playerid)
- {
- return 1;
- }
- public OnPlayerLeaveCheckpoint(playerid)
- {
- return 1;
- }
- public OnPlayerEnterRaceCheckpoint(playerid)
- {
- return 1;
- }
- public OnPlayerLeaveRaceCheckpoint(playerid)
- {
- return 1;
- }
- public OnRconCommand(cmd[])
- {
- return 1;
- }
- public OnPlayerRequestSpawn(playerid)
- {
- return 1;
- }
- public OnObjectMoved(objectid)
- {
- return 1;
- }
- public OnPlayerObjectMoved(playerid, objectid)
- {
- return 1;
- }
- public OnPlayerPickUpPickup(playerid, pickupid)
- {
- return 1;
- }
- public OnVehicleMod(playerid, vehicleid, componentid)
- {
- return 1;
- }
- public OnVehiclePaintjob(playerid, vehicleid, paintjobid)
- {
- return 1;
- }
- public OnVehicleRespray(playerid, vehicleid, color1, color2)
- {
- return 1;
- }
- public OnPlayerSelectedMenuRow(playerid, row)
- {
- return 1;
- }
- public OnPlayerExitedMenu(playerid)
- {
- return 1;
- }
- public OnPlayerInteriorChange(playerid, newinteriorid, oldinteriorid)
- {
- return 1;
- }
- public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
- {
- return 1;
- }
- public OnRconLoginAttempt(ip[], password[], success)
- {
- return 1;
- }
- public OnPlayerUpdate(playerid)
- {
- return 1;
- }
- public OnPlayerStreamIn(playerid, forplayerid)
- {
- return 1;
- }
- public OnPlayerStreamOut(playerid, forplayerid)
- {
- return 1;
- }
- public OnVehicleStreamIn(vehicleid, forplayerid)
- {
- return 1;
- }
- public OnVehicleStreamOut(vehicleid, forplayerid)
- {
- return 1;
- }
- public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
- {
- return 1;
- }
- public OnPlayerClickPlayer(playerid, clickedplayerid, source)
- {
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment