INI Files - Printable Version +- Cuberite Forum (https://forum.cuberite.org) +-- Forum: Plugins (https://forum.cuberite.org/forum-1.html) +--- Forum: Plugin Discussion (https://forum.cuberite.org/forum-8.html) +--- Thread: INI Files (/thread-23.html) Pages:
1
2
|
INI Files - Tim - 02-27-2011 Hey guys, If anyone gets a chance do you think you could explain basic usage of reading/writing to ini files, at the moment im just giving myself a headache trying to figure it out RE: INI Files - Tybor - 02-27-2011 (02-27-2011, 09:16 AM)Tim Wrote: Hey guys, Look at Area Plugin. RE: INI Files - FakeTruth - 02-27-2011 I created a page for INI files over here http://mc-server.org/wiki/doku.php?id=api:cinifile see if you find it useful RE: INI Files - Tim - 02-28-2011 (02-27-2011, 05:41 PM)Tybor Wrote:yeah, had a look at that - it was useful for some stuff then i started getting confused, might just have been due to it getting kinda late to be fair :p(02-27-2011, 09:16 AM)Tim Wrote: Hey guys, (02-27-2011, 11:22 PM)FakeTruth Wrote: I created a page for INI files over here http://mc-server.org/wiki/doku.php?id=api:cinifile thats very useful, didnt notice that page before! Thanks guys RE: INI Files - FakeTruth - 02-28-2011 You didn't notice that page because it wasn't there before, haha. I just created it RE: INI Files - codename_B - 02-28-2011 I'm having issues getting it to write to the files, have you got any advice for me? It reads perfectly but I can't change settings, I'm trying to make a plugin for scores/money. RE: INI Files - Tybor - 02-28-2011 (02-28-2011, 06:46 AM)codename_B Wrote: I'm having issues getting it to write to the files, have you got any advice for me? It reads perfectly but I can't change settings, I'm trying to make a plugin for scores/money. Look how it is handled in Area Plugin as I make extensive usage of INI file. RE: INI Files - Tim - 02-28-2011 (02-28-2011, 03:13 AM)FakeTruth Wrote: You didn't notice that page because it wasn't there before, haha. I just created itAhh thanks haha (02-28-2011, 06:46 AM)codename_B Wrote: I'm having issues getting it to write to the files, have you got any advice for me? It reads perfectly but I can't change settings, I'm trying to make a plugin for scores/money. dont forget to use WriteFile() , i kept forgetting that one and couldnt understand why it wasnt working How can i check if a key exists, like Code: if(specified-key-exists) then RE: INI Files - codename_B - 02-28-2011 I realised that and got it working Thanks! RE: INI Files - Tybor - 03-01-2011 (02-28-2011, 09:02 PM)Tim Wrote: How can i check if a key exists, like Example from my Area Plugin: PHP Code: -- check if Owners already available |