-
Content Count
365 -
Joined
-
Last visited
-
Days Won
4
Content Type
Profiles
Forums
Downloads
Staff Applications
Calendar
Everything posted by Litro
-
Extended Vending System UPDATED rev14395! by Lilith
Litro replied to quesoph's topic in Source Releases
do you use this on lattest revision ? can you share your patch ? -
Extended Vending System UPDATED rev14395! by Lilith
Litro replied to quesoph's topic in Source Releases
@Angelmelody it isn't the error but if i open shop with zeny and vend aple with price 1.000 z even i have 1 Billion zeny -
Extended Vending System UPDATED rev14395! by Lilith
Litro replied to quesoph's topic in Source Releases
hy Angel about the zeny & cash issue where server think its as item can you reproduce it ? -
try reproduce it - diff client with SSO Login - dont disable -1rag1 or -1sak1 when diffing - and change the -1rag1 to -1any1 - use ROCreed and EMBED the setting in january i have atleast 50 Player when beta open launched and 20 of them give me 000000000000 mac adress
-
i have make use of it but some player offten give me 00000000000 mac adress
-
as for @stats you can try using this getbattlestats
-
as for number one i have found the answer already, yes by changing the hit number and repeated hit the skill work but skill animation like CI or HS not showing in the client, i have to change it on the skill.c too to make the animation appear case SC_FEINTBOMB:- dmg.dmotion = clif->skill_damage(src,bl,tick,dmg.amotion,dmg.dmotion,damage,1,skill_id,skill_lv,5);+ dmg.dmotion = clif->skill_damage(src,bl,tick,dmg.amotion,dmg.dmotion,damage,dmg.div_,skill_id,skill_lv,type); break; and for the number 2 i have tried to change it as my reference but not found it yet and now i stumbled to next problem it seem heal capped to 32K damage not sure yet how to break it, will it affect all party members and what is ad.damage ?
-
How to make skill behave like hundred spear or Cross Impact that have separate damage, i have change it in the skill_db.txt the repeated hit and number of hits too, but the in the client view skill not behaved like HS/CI do How to make skill AB_CHEAL do percent heal i want to make it like skill_lv*10% that means in max level AB_CHEAL will heal 30% heal of each party member current hp
-
To the best of my knowledge(I may be wrong,), you are having this issue because of one of these issues: 1) Having Less Ram to compile HPMHook Plugin. 2) Very Old gcc(compiler) 3) Using a weird OS 1&2 im facing that too, for number 3? weird OS, what is it?
-
Using old gcc that why im always got warning ,
-
hi maam got some warning after patch... atcommand.c: In function 'atcommand_maintenance':atcommand.c:9403: warning: format '%99[^' expects type 'char *', but argument 6 has type 'char (*)[99]'atcommand.c:9381: warning: 'weekday' may be used uninitialized in this functionatcommand.c:9381: warning: 'hour' may be used uninitialized in this functionatcommand.c:9381: warning: 'minute' may be used uninitialized in this functionchrif.c: In function 'chrif_connectack':chrif.c:511: warning: 'weekday' may be used uninitialized in this functionchrif.c:511: warning: 'hour' may be used uninitialized in this functionchrif.c:511: warning: 'minute' may be used uninitialized in this functionscript.c: In function 'buildin_maintenance':script.c:18851: warning: 'weekday' may be used uninitialized in this functionscript.c:18851: warning: 'hour' may be used uninitialized in this functionscript.c:18851: warning: 'minute' may be used uninitialized in this function
-
Sorry maam forgive my ignorance
-
Thor Patcher Cannot Communicate With Server?
Litro replied to rakuzas's question in Client-Side Support
http://shogunmalaya.org/thor try add slash in the last url http://shogunmalaya.org/thor/ -
from my experience its because of ram usage, try reboot your pc and do it again i have face it some time already
-
off topic and have to stop here.. let me be the last *peace* you should re-open it maam and please let me in need to learn more how and why thit that
-
where is the fan base, i have to be registered asap
-
King Poring Recolor - First Time Recoloring
Litro replied to Litro's topic in Spriting & Palette Releases
you can give me and image like dastgir for my reference and i will make one for you, if you have other monster or headgear too i will try to do that.. -
woah.. surely your fans will line up more..
-
dunno where to find the log lol. Waiting for maam to reproduce its, i have small vps with 512 mb ram , memory leak will cause lag
-
Then i have to replace 2 line right ? Find : StrBuf->Printf(&buf,"('%d','%s','%llu','%d','%d',",cid,esc_script,bs.tick,bs.flag,bs.type);StrBuf->Printf(&buf, "'%d')", bs.icon); Into : StrBuf->Printf(&buf,"('%d','%s','%"PRId64"','%"PRIu8"','%d','%d')",cid,esc_script,bs.tick,bs.flag,bs.type,bs.icon);
-
try put the mapflag in your script, and do map exit or ctrl + c on the map console guild_vs2 mapflag noitem IT_WEAPON, IT_ARMOR
-
i have change it back to uint64 tick; and change the code like this and warning not appear StrBuf->Printf(&buf,"('%d','%s','%llu','%d','%d',",cid,esc_script,bs.tick,bs.flag,bs.type) i use %llu since the format used same by %d or %s and it says the same for %" PRIu64 ", and the "p.s: the priu64 should be outside the quotes, and not inside the quotes",im not sure how to write it into the code..