Advertisement
gopro2027

GTA V Inline Images (not blips)

Jan 22nd, 2019
529
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.57 KB | None | 0 0
  1. #include "stdio.h"
  2.  
  3. //<img src='img://gtaologo/gtaotransitionlogo' height='128' width='128'/>
  4. #define IMG_HTML(dict,img,width,height) "<img src='img://" dict "/" img "' height='" height "' width='" width "'/>"
  5.  
  6. int main()
  7. {
  8.     char *text = "Before text " IMG_HTML("gtaologo","gtaotransitionlogo","128","128") " after text";
  9.     printf(text);
  10.    
  11. }
  12.  
  13. Output:
  14. Before text <img src='img://gtaologo/gtaotransitionlogo' height='128' width='128'/> after text
  15.  
  16. Credits: https://gtaforums.com/topic/853053-lua-how-can-i-get-a-picture-inserted-into-the-notification-which-i/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement