News: Welcome back to Bullworth! If you haven't already, you will need to reset your password..


Author Topic: Kissable Boys Question  (Read 2931 times)

0 Members and 4 Guests are viewing this topic.

NaisBully

  • Guest
Kissable Boys Question
« on: March 19, 2012, 12:12:36 PM »
Hey guys/girls

I was toying around with ide.img and I thought of something. What element in the hex makes a character kissable, like the boys (Trent, Duncan, Kirby, Gord, Cornelius & Vance)? Is it something in their names, or is there another element that makes them kissable? If anyone knows please tell me & Thanks In Advance! :)

Offline Red Blaster

  • The BB Arab
  • More Than Halfway There
  • *****
  • Posts: 5,649
  • Gender: Male
  • Hi
    • View Profile
Re: Kissable Boys Question
« Reply #1 on: March 19, 2012, 04:06:13 PM »
It's in Scripts.

Offline MadmaN

  • Bully-Board Admin Team
  • Newbie
  • *
  • Posts: 0
  • Gender: Male
  • Biblio-Techa Mods (retired)
    • View Profile
Re: Kissable Boys Question
« Reply #2 on: March 19, 2012, 08:46:18 PM »
Correct!

This is a portion of what triggers kissing for a named ped.

Code: [Select]
  l_3_0 = PedCreatePoint(l_0_1[l_3_2], POINTLIST._CHARACTERS, l_3_2)
  PedSetEmotionTowardsPed(l_3_0, gPlayer, 7)
  PedSetPedToTypeAttitude(l_3_0, 13, 4)
  PedSetRequiredGift(l_3_0, 1, false, true)
  PedSetFlag(l_3_0, 84, true)
  PedSetAsleep(l_3_0, true)
  PedSetCheap(l_3_0, true)
  table.insert(l_0_0, l_3_0)
  Wait(0)

Offline Prosecute

  • Full Member
  • ***
  • Posts: 244
  • Gender: Male
    • View Profile
    • NewDayStudios
Re: Kissable Boys Question
« Reply #3 on: March 21, 2012, 01:00:32 PM »
Correct!

This is a portion of what triggers kissing for a named ped.

Code: [Select]
  l_3_0 = PedCreatePoint(l_0_1[l_3_2], POINTLIST._CHARACTERS, l_3_2)
  PedSetEmotionTowardsPed(l_3_0, gPlayer, 7)
  PedSetPedToTypeAttitude(l_3_0, 13, 4)
  PedSetRequiredGift(l_3_0, 1, false, true)
  PedSetFlag(l_3_0, 84, true)
  PedSetAsleep(l_3_0, true)
  PedSetCheap(l_3_0, true)
  table.insert(l_0_0, l_3_0)
  Wait(0)

Ah, so this is possibly the same method in which is used to make bodyguards hold your hand etc and to make peds hireable?

Offline MadmaN

  • Bully-Board Admin Team
  • Newbie
  • *
  • Posts: 0
  • Gender: Male
  • Biblio-Techa Mods (retired)
    • View Profile
Re: Kissable Boys Question
« Reply #4 on: March 21, 2012, 08:13:22 PM »
yup. Exact same method.

The difference between having bodyguards hold your hand and just stand next to you and follow is just a slight change of the code above.