Bully-Board

Bully Modding Section => Modding Questions/Help => Modding Questions/Help Archives => Topic started by: DarbyHarringtonMind on July 07, 2013, 11:58:53 AM

Title: Question###
Post by: DarbyHarringtonMind on July 07, 2013, 11:58:53 AM
Hey,guys ...
i have questions....
can jimmy become greaser????
i mean like, jimmy entry the greaser gangs...
can mod via lua???
thankss :D :D
Title: Re: Question###
Post by: c00ld0c26 on July 07, 2013, 12:40:36 PM
You can try the PedSetFaction command.
I dont know if it works, or how it works tho.
You can also set Jimmy's respect with this command : SetFactionRespect
Title: Re: Question###
Post by: DarbyHarringtonMind on July 07, 2013, 12:44:31 PM
You can try the PedSetFaction command.
I dont know if it works, or how it works tho.
You can also set Jimmy's respect with this command : SetFactionRespect

ok..
i try this ...
thanks..
Title: Re: Question###
Post by: DarbyHarringtonMind on July 07, 2013, 01:22:54 PM
You can try the PedSetFaction command.
I dont know if it works, or how it works tho.
You can also set Jimmy's respect with this command : SetFactionRespect


im sorry.....
not work...sir...... :( :(
Title: Re: Question###
Post by: c00ld0c26 on July 07, 2013, 01:29:48 PM
I think it does work, u need to know how to use it, write me the script u did.
Title: Re: Question###
Post by: DarbyHarringtonMind on July 07, 2013, 01:42:20 PM
I think it does work, u need to know how to use it, write me the script u did.


ouuu...
it makes my bully crash sir//..
Title: Re: Question###
Post by: DarbyHarringtonMind on July 07, 2013, 10:45:35 PM
Guys...????
Title: Re: Question###
Post by: c00ld0c26 on July 07, 2013, 11:45:51 PM
Write me the script u did, maybe I can fix it, I think I know how to make it work.
Title: Re: Question###
Post by: DarbyHarringtonMind on July 08, 2013, 12:53:44 AM
i dont no how.....
becoz was not my computer.....
my lua script in my brother pc.....  ;) ;)
Title: Re: Question###
Post by: DarbyHarringtonMind on July 08, 2013, 01:25:40 AM
(PLIZZZ) guys...... :jajaja: :jajaja:
Title: Re: Question###
Post by: c00ld0c26 on July 08, 2013, 01:33:15 AM
Dont beg, people wont help u if u beg :P
Be petient,
Title: Re: Question###
Post by: DarbyHarringtonMind on July 08, 2013, 01:34:27 AM
ok................
Title: Re: Question###
Post by: SWEGTA on July 08, 2013, 08:23:15 AM
That's right.
Also don't double post.
Title: Re: Question###
Post by: DaBOSS54320 on July 10, 2013, 03:57:32 PM
Enough.....................
With..................
The....................................
DOTS!..................................................................
Title: Re: Question###
Post by: DarbyHarringtonMind on July 11, 2013, 07:30:47 AM
sorry about dots..
but answer my questions..
i really really need that mod...
cmon guys...
help me... :D :D :D
Title: Re: Question###
Post by: DaBOSS54320 on July 11, 2013, 10:17:49 AM
Hmmm...
I...
Guess...
I...
Could...
Help...
But...
I...
Don't...
Know...
How...
To...
Do...
That.........................................................
In lua.........................................................

lol just joking with you XD
Title: Re: Question###
Post by: c00ld0c26 on July 11, 2013, 11:40:45 AM
PedSetFaction

thats the command u need man.
Title: Re: Question###
Post by: Mick3Mouse on July 11, 2013, 12:04:06 PM
But you cant open doors and nothing, When you do that command


.............
Title: Re: Question###
Post by: Phap on July 11, 2013, 12:30:51 PM
But you cant open doors and nothing, When you do that command


.............
You can pull the fire alarm and run out as people leave the building. Lol.
Title: Re: Question###
Post by: DarbyHarringtonMind on July 11, 2013, 10:16:12 PM
Hmmm...
I...
Guess...
I...
Could...
Help...
But...
I...
Don't...
Know...
How...
To...
Do...
That.........................................................
In lua.........................................................

lol just joking with you XD


 :laugh: :laugh: :laugh:
Title: Re: Question###
Post by: DarbyHarringtonMind on July 11, 2013, 10:17:29 PM
PedSetFaction

thats the command u need man.

ok
i try this in my pc.... :D
Title: Re: Question###
Post by: DarbyHarringtonMind on July 12, 2013, 11:30:19 PM
Guys ...
you mean like this????


Code: [Select]
ImportScript("\\Library\\LibTable.lua") -- imports the LibTable library
ImportScript("\\Library\\LibPed.lua") -- imports the LibPed library
local l_0_0 = false
 
MissionSetup = function() -- basic mission setup function which is used in almost all bully scripts
  local l_1_0 = 270 -- X coords
  local l_1_1 = -110 -- Y coords
  local l_1_2 = 6.4000000953674 -- Z coords

  PlayerSetHealth(50000) -- gives the player 50000 health
  AreaTransitionXYZ(0,l_1_0,l_1_1,l_1_2)
  PedSetFaction(13,4,4)
  SetFactionRespect(gPlayer,4)
 
end

MissionCleanup = function()
end -- end statement

main = function() -- Main mission function
  DisablePunishmentSystem(true)
  repeat
    Wait(0)
  until l_0_0 ~= false
  Wait(3000)
  MissionSucceed()
end

Help me guys... :D :D
Title: Re: Question###
Post by: DarbyHarringtonMind on July 13, 2013, 03:59:20 AM
Guys answer ..
i really need that for my mod..... :D :D
Title: Re: Question###
Post by: Walter20210 on July 13, 2013, 04:17:18 AM
 PedSetFaction(gPlayer, 4)
Title: Re: Question###
Post by: ultrasbully on July 13, 2013, 04:21:18 AM
PedSetFaction(13,4,4)
SetFactionRespect(gPlayer,4)

changed

PedSetFaction(gPlayer,4)
SetFactionRespect(13,4,4)
Title: Re: Question###
Post by: DarbyHarringtonMind on July 13, 2013, 04:50:13 AM
ouuu.....
okk
thankss guys... :D :D
Title: Re: Question###
Post by: DaBOSS54320 on July 13, 2013, 08:19:05 AM
PedSetFaction is kinda glitchy (So I've heard)
Title: Re: Question###
Post by: DarbyHarringtonMind on July 14, 2013, 01:31:48 AM
YEAH,..
but why greaser not defend me??...
and i cant talk ... , i cant open door,..
hey help me guys ... how greaser defend me, and i can talk,i can open door...??
can mod via lua?
HELP ME :D :D :D :D
Title: Re: Question###
Post by: DaBOSS54320 on July 14, 2013, 04:44:50 AM
Enough dots and begging!
Holy Shit!!!
Title: Re: Question###
Post by: DarbyHarringtonMind on July 14, 2013, 11:35:48 AM
sorry dude ,i like "dots"..
ok ,im not beg,but can you answer the questions ( how greaser defend me, and i can talk,i can open door...??
can mod via lua?)
answer that.
Title: Re: Question###
Post by: DaBOSS54320 on July 14, 2013, 04:04:10 PM
Sorry, it just drives me crazy with all of the dots.
Title: Re: Question###
Post by: c00ld0c26 on July 15, 2013, 03:00:47 AM
Make greaser defend you :

PedRecruitAlly(gplayer, PEDID)

dont change gPlayer.
Anyway here you go.
About opening doors and stuff, the set faction command is bugged, so I think thats the problem.
Just spawn yourself OUTSIDE of the boys dorm.
Title: Re: Question###
Post by: DarbyHarringtonMind on July 15, 2013, 03:13:47 AM
ahhh
ok thanks sir..
Title: Re: Question###
Post by: DaBOSS54320 on July 15, 2013, 08:16:56 AM
make pressing left set you to player faction and pressing right switch to other faction. then you can be what you need for each door. kinda like a faction selector.
Title: Re: Question###
Post by: DarbyHarringtonMind on July 15, 2013, 09:02:49 AM
make pressing left set you to player faction and pressing right switch to other faction. then you can be what you need for each door. kinda like a faction selector.


thats good idea!!....
thanks bro..