Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
-- www.styleguru.de.vu
sg_txt = "no quests available"
function sg_noquesttext_main(e)
if g_Entity[e]['plrinzone']==1 then
TextCenterOnXColor(50,53,3,sg_txt,192,220,192)
Panel(31,50,69,20)
end
end
example of a style-guru generated script. it works but when i add another script to my game trying to display a different text it just shows the same text again.
-- Script generated with StyleGuru
-- www.styleguru.de.vu
sg_txt = "this game is so dead lol"
function sg_loltext_main(e)
if g_Entity[e]['plrinzone']==1 then
TextCenterOnXColor(50,2,1,sg_txt,255,0,255)
end
end
function text1_init(e)
end
function text1_main(e)
PlayerDist = GetPlayerDistance(e)
if PlayerDist < 175 then
TextCenterOnX(50,90,3,"Text")
end
end
i made a notepad document... copied this but what now ? where i put my text ? how i have to name it ?
gah after 500 hours of game guru i feel like a bloody noob
anyway- is style-guru still being used by someone here ? it would be an awesome tool if i could make it work. the thread on the forums has been closed long time ago.
if anybody has something to say about "style guru" please let me know
(btw another cool program i have been using is "entity-workshop" - it is soooo extremly awesome and still working ( hope it will continue to be supported !?)
why is it not ?
i would want to change font,size,color and position.
the good thing about the "style-guru" software is that i can choose font,size,color and position very easily. the bad thing is that i cannot make more than one text work for some reason.
gah i´m kind of frustrated about the lack of "easy" when i try to add text and narrative
function text1_init(e)
end
function text1_main(e)
PlayerDist = GetPlayerDistance(e)
if PlayerDist < 175 then
TextColor(50,90,3,"Hello.",255,100,100)
end
end
If you want to display more, use the "Storyzone with Image" generator. But be aware... it's a little bit more complicated, course everything must be in the folder it belongs and named right.
yes I use style Guru. its great. Brilliant. I can't understand why making title screens is top of the voting board when we already have all the features we need already in StyleGuru.
I did have a script issue like you had but the "solution" was very simple (I'm trying to remember what I did, when I do I'll let you know, sorry that's not much help but im not at home atm to look at the programme) I think I may have put the scripts into different folders (?)
also entity workshop, thats great as well. But it's an old programme and doesn't look like it is being developed or supported. I counted myself lucky that he's been kind enough to keep the download available after all this time ;)
anybody still needing entity workshop here's a video with a link in it and an overview.
https://www.youtube.com/watch?v=y4raj6INCQo
hey Sanguis - thank you so much for the awesome software you made ! it really makes game guru much more awesome. i will experiment more with it and i will figure out what i did wrong.
and Mcgroin - yes entity workshop is really a super good tool. actually i was hoping that EBE would have it´s functionality integrated somehow... but EBE itself is super awesome too. just hope entity workshop will be somehow continued and supported in the future.
for me this "easy visual costumisation tools" are soooo important to enable me to use game guru as a tool to express my own ideas.
Sanguis style guru deserves much more visibility and support from the community- same for entity workshop- actually not sure who made it- but it is essential for me.
it´s weird because i created several different scripts and attached them to different story zones but for some reason only one and the same text ( of the last edited zone) would be displayed in all of them. i tried to put them in different folders and also tried to rename etc... dunno maybe i was just tired. will try again
sg_txt = "this game is so dead lol"
Try different varables. Change "sg_txt" for every script. I've got no time to test it at the moment, I'm not at home.
Beside of this make sure you have not only different labeled lua files, even the functon names must be different (but the same name the .lua file has).