Garr
Members-
Content Count
482 -
Joined
-
Last visited
-
Days Won
8
Garr last won the day on March 4 2016
Garr had the most liked content!
About Garr
-
Rank
Advanced Member
Contact Methods
-
Skype
herogarr
Profile Information
-
Gender
Not Telling
-
Github
HeroGarr
-
Emulator
Hercules
Recent Profile Visitors
5406 profile views
-
evilpuncker reacted to an answer to a question: NPC Syntax Highligh for Notepad++
-
Angery Woodpecker reacted to an answer to a question: Item that gives constant Soul Link Effect
-
-
Sephus reacted to an answer to a question: Kafra with storage + gstorage
-
dfabsgwapings reacted to an answer to a question: Chat/PM issue
-
Go into friend window options, and uncheck opening 1:1 chats.
-
Singularity reacted to an answer to a question: Luk and freezing
-
Is there another way to increase monster size? current max size: 2 (big)
Garr replied to Hafflex's question in Source Support
You can just use Act Editor from Tokei, it has built-in magnify under Scripts tab. -
Hafflex reacted to an answer to a question: Is there another way to increase monster size? current max size: 2 (big)
-
Well, either src editing or plugin. I don't remember any commands that let you check player's elemental resistances.
-
Is there another way to increase monster size? current max size: 2 (big)
Garr replied to Hafflex's question in Source Support
Hmm. That depends on the client you're using. If I remember correctly latest ones have a table that lets you increase size of monster sprite. Iirc it's the one in system called monster_size_effect.lub (or lua). But I'm not sure starting which client it works. Otherwise I don't know any options besides resizing sprite itself, sorry. -
Is there another way to increase monster size? current max size: 2 (big)
Garr replied to Hafflex's question in Source Support
** Create a permanent monster spawn: <map name>,<x>,<y>,<xs>,<ys>%TAB%monster%TAB%<monster name>%TAB%<mob id>,<amount>,<delay1>,<delay2>,<event>{,<mob size>,<mob ai>} ... There are two optional fields for monster size and AI. Size can be 0 (medium), 1 (small), or 2 (big). AI can be 0 (default), 1 (attack/friendly), 2 (sphere), 3 (flora), or 4 (zanzou). Also *monster "<map name>",<x>,<y>,"<name to show>",<mob id>,<amount>{,"<event label>"{,<size>{,<ai>}}}; *areamonster "<map name>",<x1>,<y1>,<x2>,<y2>,"<name to show>",<mob id>,<amount>{,"<event label>"{,<size>{,<ai>}}}; ... <size> can be: 0 = medium (default) 1 = small 2 = big From doc/script_commands.txt -
Garr reacted to a post in a topic: [Instance]Horror Toy Factory (Aegis Server)
-
Check if this will help?
-
What if you just remove sample plugin from compiling? Will the next one error? (I mean, it's not needed anyway. It's just a sample on how to write/compile/use plugins)
-
Helena reacted to an answer to a question: Array help
-
Replace .itemname$[ .@k ] = getitemname( .itemid[ .@k ] ); with .itemname$[ .@k ] = (getitemname( .itemid[ .@k ] ) != "null")?getitemname( .itemid[ .@k ] ):""; That way nothing will be altered, client doesn't show empty options (""), but still counts them in when returning chosen index.
-
That's exactly what I gave you, locations of all the pictures client uses. It's called "skin", since it can be selected. I'd advice you check if it works better with other skins (those can be places inside "skin" folder near client), if so then your current one is the problem, otherwise problem might be in exe itself, and then probably only @Neo can help you out.
-
There's no other way I know but manually adjusting them. I'd advice you to get SDE to work with server files, it saves so much time. @True Zeal Last client that reads idnum files is 2012-04-10 iirc.
-
Everything, and I mean *EVERYTHING* graphic related is client-side only. Server mostly works only with logic. Iirc only ever exception are guild emblems. And only because it needs to send them to other people. And, as far as I know, basic skin is located inside data.grf, "data\texture\À¯ÀúÀÎÅÍÆäÀ̽º". But i'd put my finger on skins, they should be in skin folder near your client.
-
mrlongshen reacted to an answer to a question: Overwrite item price in ragnarok
-
1) Just open SDE 2) Open item db 3) Use "[type] 6" as filter 4) Select 1 card, then ctrl+A 5) Edit sell & buy price on the right window (it will edit ALL selected items) 6) Save 7) ... 8) Profit!