Leaderboard
Popular Content
Showing content with the highest reputation on 06/04/19 in all areas
-
LOGIN SCREEN https://streamable.com/ii9gib https://streamable.com/fc0sn7 https://vimeo.com/287302640 https://vimeo.com/300142810 https://vimeo.com/274177970 https://vimeo.com/310257994 https://streamable.com/6t1f6 Splash's https://streamable.com/n58ma Misc All Launcher's have Discord RichPresence SCRIPT & SOURCE Bet System https://vimeo.com/297864967 Pick Item with Mouse Click https://vimeo.com/288068416 Hack'n Slash Attack System https://vimeo.com/285431474 SkillShot System https://vimeo.com/269528679 Header Hud Char Info https://vimeo.com/268928510 System Conversor Skill Target to Place https://vimeo.com/307620277 LEAGUE OF LEGENDS INSPIRED SKILLS Ivern https://vimeo.com/270423927 https://vimeo.com/270211429 Kalista https://vimeo.com/270518714 Ash https://vimeo.com/270728857 Orianna https://vimeo.com/270911850 Xayah https://vimeo.com/271172345 Katarina https://vimeo.com/269402201 Client Edit Drag System https://streamable.com/dnqgz New Hud Interface (Old) NEW INTERFACE FROM TOS (WITH NPC DIALOG) https://streamable.com/ebec1 TREE OF SAVIOR INTERFACE 2.0 https://streamable.com/zshk1t https://streamable.com/jpqeks https://streamable.com/5axy7g RPG Style Map Transition https://streamable.com/vjz06y New Game Filter https://vimeo.com/303199417 Item Summon Screen https://vimeo.com/300142810 Rain https://vimeo.com/298893681 Rain 2.0 https://streamable.com/8hlb3l Campfire Button Shortcut https://vimeo.com/298498848 Talk with NPC with spacebar press https://streamable.com/puoar2 Discord Integration WALK WITH WASD https://streamable.com/c4u7u DRESSROOM MOD https://streamable.com/n1ncz MASTERY WINDOW https://streamable.com/zfttp ________________________________________ A lot of other things I haven't record, but I will try to keep this updated. Green = last added.1 point
-
Few tips first: .@ variables are deleted when the script terminates like with "end;" If you want to to delete a variable, set it to 0 not -1. Setting a variable to +1 might work, but its better to use only numbers like: ".@on = 0;" and ".@on = 1;" To complete your whole code: akame,103,162,5 script Survival 804,{ if(Survival == 0) { // Character Permanent variable Survival = 1; mes "Survival Mode active"; } else { Survival = 0; mes "Survival Mode offline"; } end; OnPCLoginEvent: // This will be triggered on login automatically: if(Survival) addtimer 30000, strnpcinfo(3) + "::OnSurvival"; end; OnSurvival: deltimer 30000, strnpcinfo(3) + "::OnSurvival"; // Deleting the old timer delitem 502,1; addtimer 30000, strnpcinfo(3) + "::OnSurvival"; // Re-Adding the timer to "loop" it end; } I still don't get your variable usage there. Explain to me what the ".@on" variable should have done. Is like a game mode, which activates the Survival Mode when you click on the NPC/Waiting Room you mentioned? So only which are participating in that survival mode, will get their item deleted? Then you need to use character permanent variables. I used as a example "Survival" in the code above. So if you talk to the NPC now, you either deactivate the Survival mode or activate it. I hope I could help. Regards, Chris1 point
-
Well if you have certain id for your food, you can store those in an array, if it's multiple items of course, loop it with for() and check each item with countitem that way.1 point
-
The best way would be using the OnPCLoginEvent and then. You can attach the timer to it. But use addtimer for that, since it's saved in the character itself. You don't need to use a function for that. Now the question is if you want to use a random item or a fixed one: Random item can be done via getinventorylist and a specific item like you had, but use countitem before to check if the item actually exists. Check the script_commands. txt file for further details on these commands. Regards, Chris1 point
-
please show phpinfo https://mediatemple.net/community/products/dv/204643880/how-can-i-create-a-phpinfo.php-page Or you could not show the phpinfo. The reasons can be next: wrong user (webserver works under some user, files under another user, for example because you uploaded though ssh root user files to your host but not from control panel directly). The solution can be: just remove all files (but backup them first again) and try again upload files but via plesk. this is an old file, and not really needed, it's generated once when you open website and store in cache config. So you can try to remove the file, and webserver should create the file again. But do not remove all files, only files with .cache.php also, it can be disabled php fopen() command, or php user is different to your website files.1 point
-
Updates: Launcher New Launcher Client Edit WASD Walking New Interface of Tree of Savior1 point
-
1 point
-
1 point
-
1 point