![]() |
How to input the image? - Printable Version +- Frictional Games Forum (read-only) (https://www.frictionalgames.com/forum) +-- Forum: Amnesia: The Dark Descent (https://www.frictionalgames.com/forum/forum-6.html) +--- Forum: Custom Stories, TCs & Mods - Development (https://www.frictionalgames.com/forum/forum-38.html) +---- Forum: Development Support (https://www.frictionalgames.com/forum/forum-39.html) +---- Thread: How to input the image? (/thread-17895.html) |
How to input the image? - neocrawler - 08-22-2012 So I had made a AddUseItemOn and when you would use the item on the door u should get a note. however you get a note but It didn't want to load the background for the note. I used AddNote("StephanoHelpDungeons2", "bg_letterstephano"); the image is a tga file. It didn't work either if I changed it to: AddNote("StephanoHelpDungeons2", "bg_letterstephano.tga"); Any tips or help? ![]() RE: How to input the image? - Theforgot3n1 - 08-22-2012 (08-22-2012, 12:38 AM)neocrawler Wrote: So I had made a AddUseItemOn and when you would use the item on the door u should get a note.Why ".tga" on only one of them? Just wondering. RE: How to input the image? - neocrawler - 08-22-2012 I dunno all picture files where tga so i used tga. I also tried png but didnt work either :S RE: How to input the image? - Melvin - 08-22-2012 (08-22-2012, 12:38 AM)neocrawler Wrote: So I had made a AddUseItemOn and when you would use the item on the door u should get a note.You cant do through scripting. Go to the modeleditor and pick a note, change the note background save as. Then, use that model. easy as that. RE: How to input the image? - CorinthianMerchant - 08-22-2012 Quote:Quote:StephanoQuote:StephanoQuote:StephanoHelpDungeons2Quote:AddNote("StephanoHelpDungeons2", "bg_letterstephano");("StephanoHelpDungeons2", "bg_letterstephano"); ![]() RE: How to input the image? - Melvin - 08-22-2012 (08-22-2012, 03:49 PM)CorinthianMerchant Wrote:Dude he's here for help, stop being so childish and just accept that he probably likes Pewdiepie.Quote:Quote:StephanoQuote:StephanoQuote:("StephanoHelpDungeons2", "bg_letterstephano");StephanoHelpDungeons2 RE: How to input the image? - Your Computer - 08-22-2012 Maybe it assumes the same file name sytnax as shown here: http://www.youtube.com/watch?v=PejzCPp1Vs8&list=PLD326789BC99530C8&index=21 RE: How to input the image? - neocrawler - 08-23-2012 Yep It is a based on PewDie but I used his real name Felix anyway so that it aint look like I made it only for him. And thanks for the info about that you can't do it through script I was allready afraid of that. :/ RE: How to input the image? - Your Computer - 08-23-2012 (08-23-2012, 03:08 PM)neocrawler Wrote: Yep It is a based on PewDie but I used his real name Felix anyway so that it aint look like I made it only for him. And thanks for the info about that you can't do it through script I was allready afraid of that. :/ You give up too easily. Didn't you try using the same file name syntax as shown in the video for the script? This works with the file name custom_note_bg_large: PHP Code: AddNote("LangNoteEntry", "custom_note_bg"); RE: How to input the image? - neocrawler - 08-25-2012 I have to admit you are right the script works I noticed. But It keeps loaded as a black screen. So something is wrong with the picture itself I gues. Ow and I didn't notice the link you sended in your previous reply. And aswell thanks for all the tutorial vids you made ^^ I've used them alot for getting here. |