AR/removePedClothes

From Multi Theft Auto: Wiki
Jump to navigation Jump to search

هذه الوظيفة تستخدم لازالة ملابس من الاعب

Syntax

bool removePedClothes ( ped thePed, int clothesType, [ string clothesTexture, string clothesModel ] )

OOP Syntax Help! I don't understand this!

Method: ped:removeClothes(...)


Required Arguments

  • thePed: الشخصيه التي تريد ازالة ملابسها
  • clothesType: نوع الملابس التي تريد ازالتها

Optional Arguments

  • clothesTexture: ملف سيرفر فقط: سلسلة تحديد الملابس التي سيتم ازالتها clothes catalog.
  • clothesModel: ملف سيرفر فقط: سلسلة تحديد رقم نوع الملابس clothes catalog.

Returns

Returns: false اذا تم ازالة الملابس بالفعل, اما اذا لم تتم ازالة الملابس فتكون true تكون القيمة

Example

Click to collapse [-]
Server
function removeHelmetOnEnter ( vehicleEntered, seat, jacked )
    if getElementModel ( vehicleEntered ) == 411 then-- اذا كانت هذه هي السياره المحدده
        removePedClothes (source, 16, "moto", "moto") --ازالة الملابس
    end
end
addEventHandler ( "onPlayerVehicleEnter", root, removeHelmetOnEnter )

See Also